import { Meta } from '@storybook/react' import { Button } from './Button' import { Box } from '../Box/Box' import { IconSolidCheveronDown, IconSolidSave } from '../icons' export default { title: 'Components/Button', component: Button, } as Meta export const ButtonVariants = () => { const kind = ['primary', 'secondary'] as const const emphasis = ['high', 'medium', 'low'] as const const size = ['medium', 'small', 'xSmall'] as const return ( {kind.map(($kind, idx) => ( {emphasis.map(($emphasis, jdx) => ( {size.map(($size, kdx) => ( ))} ))} ))} ) }