summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/posts-stack.stories.tsx
blob: e2206c2e610529c682fcbb0f396434f82a2e21bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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({});