import { Meta, StoryObj } from '@storybook/react'; import { CheckRoundFilledIcon } from 'components/shared/CustomIcon'; const meta: Meta = { title: 'Icons/CheckRoundFilledIcon', component: CheckRoundFilledIcon, tags: ['autodocs'], argTypes: { size: { control: 'text', }, name: { control: 'text', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { render: ({ size, name }) => , args: { size: '24px', name: 'plus', }, };