diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-03-31 23:00:41 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-03-31 23:00:41 +0200 |
| commit | da9f0895bddd9385c1026715ac1b5e63594932eb (patch) | |
| tree | ef14c1fcc76ee450c76778504d799cbffdde541d /src/components/atoms/icons/sun.stories.tsx | |
| parent | 53677c794aafd55fc649cf7663f47cbeaeddc5d0 (diff) | |
chore: add a Sun icon component
Diffstat (limited to 'src/components/atoms/icons/sun.stories.tsx')
| -rw-r--r-- | src/components/atoms/icons/sun.stories.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/atoms/icons/sun.stories.tsx b/src/components/atoms/icons/sun.stories.tsx new file mode 100644 index 0000000..613b59e --- /dev/null +++ b/src/components/atoms/icons/sun.stories.tsx @@ -0,0 +1,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({}); |
