phoenix-components-library
Version:
Component library for Phoenix Frontend Projects.
33 lines (23 loc) • 517 B
Markdown
```js
import { CheckBox } from 'phoenix-components-library';
render() {
return (
<CheckBox
checked
disabled
/>
);
}
```
<!-- STORY -->
- `checked` - to set Checkbox status
- `disabled` - To disable checkbox
| propName | propType | defaultValue | isRequired |
| -------- | -------- | ------------ | ---------- |
| checked | bool | false | |
| disabled | bool | false | |