diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-01 11:25:56 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-01 11:25:56 +0200 |
| commit | c1b6d057ba810705789e02e45f32ad29ce383954 (patch) | |
| tree | df1e35363341cdcb2f1232978260be4511a7cc31 /src/components/atoms/icons/cog.stories.tsx | |
| parent | 9811d3d2777dcca9b74d15ce4f6126fb90b579bb (diff) | |
chore: add a Cog icon component
Diffstat (limited to 'src/components/atoms/icons/cog.stories.tsx')
| -rw-r--r-- | src/components/atoms/icons/cog.stories.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/atoms/icons/cog.stories.tsx b/src/components/atoms/icons/cog.stories.tsx new file mode 100644 index 0000000..3b16ffc --- /dev/null +++ b/src/components/atoms/icons/cog.stories.tsx @@ -0,0 +1,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({}); |
