Use pretty checkboxes with Form.io
Form.io Pretty Checkboxes
-------------------------
This is a Form.io renderer module that adds the Pretty Checkbox styles to all rendered checkboxes.
```
npm install --save @formio/pretty-checkbox
`js`
import { Formio } from '@formio/js';
import FormioPrettyCheckbox from '@formio/pretty-checkbox';
Formio.use(FormioPrettyCheckbox);
You will also need to add the styles like so.
`css`
@import '~@formio/pretty-checkbox/dist/formio-pretty-checkboxes.css';
`js
import { Formio } from '@formio/js';
import FormioPrettyCheckbox from '@formio/pretty-checkbox';
Formio.use(FormioPrettyCheckbox);
const PrettyCheckbox = FormioPrettyCheckbox.components.checkbox;
export default class CustomCheckbox extends PrettyCheckbox {}
``