From c1b6d057ba810705789e02e45f32ad29ce383954 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 1 Apr 2022 11:25:56 +0200 Subject: chore: add a Cog icon component --- src/components/atoms/icons/cog.stories.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/components/atoms/icons/cog.stories.tsx (limited to 'src/components/atoms/icons/cog.stories.tsx') 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; + +const Template: ComponentStory = (args) => ( + +); + +export const Cog = Template.bind({}); -- cgit v1.2.3