aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/cog.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/cog.stories.tsx')
-rw-r--r--src/components/atoms/icons/cog.stories.tsx34
1 files changed, 34 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..631f30d
--- /dev/null
+++ b/src/components/atoms/icons/cog.stories.tsx
@@ -0,0 +1,34 @@
+import { ComponentMeta, ComponentStory } from '@storybook/react';
+import CogIcon from './cog';
+
+/**
+ * Cogs icon - Storybook Meta
+ */
+export default {
+ title: 'Atoms/Illustrations/Icons',
+ component: CogIcon,
+ argTypes: {
+ className: {
+ control: {
+ type: 'text',
+ },
+ description: 'Set additional classnames.',
+ table: {
+ category: 'Styles',
+ },
+ type: {
+ name: 'string',
+ required: false,
+ },
+ },
+ },
+} as ComponentMeta<typeof CogIcon>;
+
+const Template: ComponentStory<typeof CogIcon> = (args) => (
+ <CogIcon {...args} />
+);
+
+/**
+ * Icons Stories - Cogs
+ */
+export const Cog = Template.bind({});