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