import { Meta, StoryFn, StoryObj } from '@storybook/react'
import React from 'react'
import { Box, Label } from '../index.js'
import { CheckBox } from './index.js'
export const Default: StoryObj = {
render: (props) => (
),
}
export const AllStates: StoryFn = () => (
)
const meta: Meta = {
title: 'DesignSystem/Atoms/CheckBox',
component: CheckBox,
}
export default meta