diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-03-31 23:19:53 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-03-31 23:24:37 +0200 |
| commit | 60c284c7ad7383313886c5f4716589cb6c180693 (patch) | |
| tree | 1b0f9c6c2d93d0d40915cd02837392b4b5a37f53 /src/components/atoms/icons/posts-stack.stories.tsx | |
| parent | 9627efaf47db699ae379fda4db3abd77c55fe8f1 (diff) | |
chore: add a posts stack svg icon component
Diffstat (limited to 'src/components/atoms/icons/posts-stack.stories.tsx')
| -rw-r--r-- | src/components/atoms/icons/posts-stack.stories.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/atoms/icons/posts-stack.stories.tsx b/src/components/atoms/icons/posts-stack.stories.tsx new file mode 100644 index 0000000..e2206c2 --- /dev/null +++ b/src/components/atoms/icons/posts-stack.stories.tsx @@ -0,0 +1,13 @@ +import { ComponentMeta, ComponentStory } from '@storybook/react'; +import PostsStackIcon from './posts-stack'; + +export default { + title: 'Atoms/Icons', + component: PostsStackIcon, +} as ComponentMeta<typeof PostsStackIcon>; + +const Template: ComponentStory<typeof PostsStackIcon> = (args) => ( + <PostsStackIcon {...args} /> +); + +export const PostsStack = Template.bind({}); |
