react-checkbox-tis
v1.0.5
Published
>
Downloads
8
Readme
react-checkbox-tis
Install
npm i react-checkbox-tis
or
yarn add react-checkbox-tis
Usage
import React from 'react';
import { Checkbox, labelPosition } from 'react-checkbox-tis';
import 'react-checkbox-tis/dist/index.css';
const App = () => {
return (
<Checkbox
className='Checkbox'
onChange={(e, checked) => console.log(checked)}
label='Remember me'
color='#0085fe'
backgroundColor='#0085fecc'
labelPosition={labelPosition.start}
darkMode={false}
/>
);
};
export default App;
License
MIT © boof-tech