diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-01 11:46:31 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-01 11:46:31 +0200 |
| commit | 9b31e81c8d45eaf0dc6971655dc08b0d0a1cbe56 (patch) | |
| tree | 3eb502178f9ef22004ba00952fc302befa5d5fad /src/components/atoms/icons/envelop.stories.tsx | |
| parent | 769c124ff54960ac9db4f9028b095c1385cd3961 (diff) | |
chore: add an envelop svg icon component
Diffstat (limited to 'src/components/atoms/icons/envelop.stories.tsx')
| -rw-r--r-- | src/components/atoms/icons/envelop.stories.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/atoms/icons/envelop.stories.tsx b/src/components/atoms/icons/envelop.stories.tsx new file mode 100644 index 0000000..9577431 --- /dev/null +++ b/src/components/atoms/icons/envelop.stories.tsx @@ -0,0 +1,13 @@ +import { ComponentMeta, ComponentStory } from '@storybook/react'; +import EnvelopIcon from './envelop'; + +export default { + title: 'Atoms/Icons', + component: EnvelopIcon, +} as ComponentMeta<typeof EnvelopIcon>; + +const Template: ComponentStory<typeof EnvelopIcon> = (args) => ( + <EnvelopIcon {...args} /> +); + +export const Envelop = Template.bind({}); |
