summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/posts-stack.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/posts-stack.stories.tsx')
-rw-r--r--src/components/atoms/icons/posts-stack.stories.tsx13
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({});