blob: 265df7a8815c7af2e92f5ff8066d5810b0e068a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { ComponentMeta, ComponentStory } from '@storybook/react';
import CloseIcon from './close';
export default {
title: 'Atoms/Icons',
component: CloseIcon,
} as ComponentMeta<typeof CloseIcon>;
const Template: ComponentStory<typeof CloseIcon> = (args) => (
<CloseIcon {...args} />
);
export const Close = Template.bind({});
|