UNPKG

woi-react-components

Version:

This project requires NodeJS (version 18 or later) and NPM. [Node](http://nodejs.org/) and [NPM](https://npmjs.org/) are really easy to install. To make sure you have them available on your machine, try running the following command. ```sh $ npm -v &

16 lines (15 loc) 487 B
export interface WOICheckBoxProps { size: number; borderRadius?: number; borderWidth?: number; activeBorderColor?: string; inActiveBorderColor?: string; activeBackgroundColor?: string; inActiveBackgroundColor?: string; icon?: string; iconSize?: number; isChecked: boolean; clickFunction?: () => void; } declare const WOICheckBox: (props: WOICheckBoxProps) => import("react/jsx-runtime").JSX.Element; export default WOICheckBox;