# InputCheckbox

![size](https://img.shields.io/bundlephobia/min/@propellerads/input-checkbox.svg)
![](https://img.shields.io/npm/v/@propellerads/input-checkbox.svg?style=flat-square)

[NPM](https://www.npmjs.com/package/@propellerads/input-checkbox) |
[Github](https://github.com/propellerads/ui-components/tree/master/Components/inputCheckbox)

## Installation
* `yarn add @propellerads/input-checkbox` or `npm install @propellerads/input-checkbox -S`

### How to use
* `import input-checkbox from '@propellerads/input-checkbox';`
* And render 
```
<InputCheckbox
    description="Input Checkbox description"
    elementId="InputCheckbox"
    hasError={false}
    isChecked={false}
    isDisabled={false}
    label={<span><a href="#" onClick={function noRefCheck() {}}>Hi, bro</a> i am clickable</span>}
    onChange={() => {}}
/>
```
