import { type Meta, type StoryFn, type StoryObj } from '@storybook/react' import { SmoothCornersBox } from './SmoothCornersBox' import { type SmoothCornersBoxProps } from './SmoothCornersBox.types' const meta: Meta = { component: SmoothCornersBox, } const Template: StoryFn = ({ children, ...otherCheckboxProps }) => ( {children} ) export const Primary: StoryObj = { render: Template, args: { disabled: false, borderRadius: '42%', shadow: { offsetX: 0, offsetY: 4, blurRadius: 20, spreadRadius: 0, color: 'elevation-large', }, margin: 0, backgroundColor: 'fill-absolute-white', backgroundImage: '', }, } export default meta