import type { Meta, Story } from '@storybook/react'; import { Checkbox } from '../../../@forms/checkbox'; import type { CheckboxProps } from '../../../@forms/checkbox'; export default { component: Checkbox, title: 'Data Grid/In Cells/Batch Action Column' } as Meta; const Template: Story = args => { return ; }; export const Unchecked = Template.bind({}); Unchecked.args = { checked: false, disabled: false, error: false, formControlLabelProps: { label: 'Default' }, indeterminate: false };