# CheckBox

### Usage

```js
import { CheckBox } from 'phoenix-components-library';

render() {
  return (
    <CheckBox
        checked
        disabled
    />
  );
}
```

### Live Example

<!-- STORY -->

### Properties

- `checked` - to set Checkbox status
- `disabled` - To disable checkbox

| propName | propType | defaultValue | isRequired |
| -------- | -------- | ------------ | ---------- |
| checked  | bool     | false        |            |
| disabled | bool     | false        |            |

### Roadmap
