From da9f0895bddd9385c1026715ac1b5e63594932eb Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 31 Mar 2022 23:00:41 +0200 Subject: chore: add a Sun icon component --- src/components/atoms/icons/sun.stories.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/components/atoms/icons/sun.stories.tsx (limited to 'src/components/atoms/icons/sun.stories.tsx') 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; + +const Template: ComponentStory = (args) => ( + +); + +export const Sun = Template.bind({}); -- cgit v1.2.3