import { Meta, StoryObj } from '@storybook/react-webpack5'; import { fn } from 'storybook/test'; import { lorem10 } from '../test-utils'; import Checkbox from './Checkbox'; import { withVariantConfig } from '../../.storybook/helpers'; const meta: Meta = { component: Checkbox, tags: ['!autodocs', '!manifest'], title: 'Forms/Checkbox/Tests', args: { label: 'This is the label', onChange: fn(), }, }; export default meta; type Story = StoryObj; export const MultipleMobile: Story = { render: (args) => { return ( <> ); }, ...withVariantConfig(['default', 'dark', 'rtl', 'mobile']), };