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