bpk-component-switch-css
v2.1.9
Published
Backpack switch component.
Keywords
Readme
bpk-component-switch
Backpack switch component.
Installation
npm install bpk-component-switch --save-devUsage
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 | | type | oneOf(SWITCH_TYPES.primary, SWITCH_TYPES.event) | false | SWITCH_TYPES.primary
This component uses a hidden <input type="checkbox" />, so it supports all the same properties as it (for example checked).
Theme props
switchCheckedColor
