import { type Meta, type StoryFn, type StoryObj } from '@storybook/react' import { Box } from './Box' import { type BoxProps } from './Box.types' const meta: Meta = { component: Box, } const Template: StoryFn = ({ children, ...rest }) => ( {children} ) export const Primary: StoryObj = { render: Template, args: { width: '50px', height: '50px', backgroundColor: 'fill-neutral-light', borderRadius: '8', borderWidth: '1px', borderColor: 'border-neutral', }, } export default meta