summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/envelop.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/envelop.stories.tsx')
-rw-r--r--src/components/atoms/icons/envelop.stories.tsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/atoms/icons/envelop.stories.tsx b/src/components/atoms/icons/envelop.stories.tsx
index 9139b44..efa94dd 100644
--- a/src/components/atoms/icons/envelop.stories.tsx
+++ b/src/components/atoms/icons/envelop.stories.tsx
@@ -1,8 +1,11 @@
import { ComponentMeta, ComponentStory } from '@storybook/react';
import EnvelopIcon from './envelop';
+/**
+ * Envelop icon - Storybook Meta
+ */
export default {
- title: 'Atoms/Icons',
+ title: 'Atoms/Illustrations/Icons',
component: EnvelopIcon,
argTypes: {
className: {
@@ -25,4 +28,7 @@ const Template: ComponentStory<typeof EnvelopIcon> = (args) => (
<EnvelopIcon {...args} />
);
+/**
+ * Icons Stories - Envelop
+ */
export const Envelop = Template.bind({});