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.tsx25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/components/atoms/icons/hamburger.stories.tsx b/src/components/atoms/icons/hamburger.stories.tsx
new file mode 100644
index 0000000..c145daf
--- /dev/null
+++ b/src/components/atoms/icons/hamburger.stories.tsx
@@ -0,0 +1,25 @@
+import { ComponentMeta, ComponentStory } from '@storybook/react';
+import HamburgerIcon from './hamburger';
+
+export default {
+ title: 'Atoms/Icons',
+ component: HamburgerIcon,
+ argTypes: {
+ isActive: {
+ control: {
+ type: 'boolean',
+ },
+ description: 'Transform hamburger into a cross when state is active.',
+ type: {
+ name: 'boolean',
+ required: true,
+ },
+ },
+ },
+} as ComponentMeta<typeof HamburgerIcon>;
+
+const Template: ComponentStory<typeof HamburgerIcon> = (args) => (
+ <HamburgerIcon {...args} />
+);
+
+export const Hamburger = Template.bind({});