UNPKG

@navinc/base-react-components

Version:
26 lines (22 loc) 440 B
import { Toggle } from './toggle.js' import readme from './toggle.readme.md' import { StandardCard } from './standard-card.js' export default { title: 'Form Elements/Toggle', component: Toggle, parameters: { readme: { content: readme }, }, } export const Basic = (args) => { return ( <StandardCard> <Toggle {...args} /> </StandardCard> ) } Basic.args = { checked: false, disabled: false, color: '', }