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

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

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

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