summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/home.stories.tsx
blob: 59eb477539194b9eb65de71c5096caeeb4b5f452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { ComponentMeta, ComponentStory } from '@storybook/react';
import HomeIcon from './home';

export default {
  title: 'Atoms/Icons',
  component: HomeIcon,
} as ComponentMeta<typeof HomeIcon>;

const Template: ComponentStory<typeof HomeIcon> = (args) => (
  <HomeIcon {...args} />
);

export const Home = Template.bind({});