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