import OLFormSwitch from '@/features/ui/components/ol/ol-form-switch' import { disableControlsOf } from './utils/arg-types' export const Unchecked = () => { return {}} checked={false} /> } export const UncheckedDisabled = () => { return {}} checked={false} disabled /> } export const Checked = () => { return {}} checked /> } export const CheckedDisabled = () => { return {}} checked disabled /> } export default { title: 'Shared / Components / Input Switch', component: OLFormSwitch, argTypes: { ...disableControlsOf('inputRef'), }, }