bpk-component-switch
v3.2.2
Published
Backpack switch component.
Downloads
36
Maintainers
Keywords
Readme
bpk-component-switch
Backpack switch component.
Installation
npm install bpk-component-switch --save-dev
Usage
import React from 'react';
import BpkSwitch from 'bpk-component-switch';
export default () => (
<div>
<BpkSwitch label="Switched on" checked />
<BpkSwitch label="Turned off" />
</div>
)
Props
| Property | PropType | Required | Default Value | | --------- | -------- | -------- | ------------- | | label | Node | true | - | | className | string | false | null | | small | boolean | false | false |
This component uses a hidden <input type="checkbox" />
, so it supports all the same properties as it (for example checked
).
Theme props
switchCheckedColor