import React from 'react' import { Meta } from '@storybook/react' import { CheckboxCube } from './index' export default { title: 'atoms/CheckboxCube', component: CheckboxCube, argTypes: { checked: { control: 'boolean', }, disabled: { control: 'boolean', }, indeterminate: { control: 'boolean', }, label: { control: 'text', }, onChange: { action: 'CheckboxCube Changed' }, }, } as Meta export const Default = (args: any) => ( , id?: any) => {}} {...args} /> ) export const Checked = (args: any) => ( , id?: any) => {}} {...args} /> )