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.tsx47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/components/atoms/icons/hamburger.stories.tsx b/src/components/atoms/icons/hamburger.stories.tsx
deleted file mode 100644
index b2416c6..0000000
--- a/src/components/atoms/icons/hamburger.stories.tsx
+++ /dev/null
@@ -1,47 +0,0 @@
-import { ComponentMeta, ComponentStory } from '@storybook/react';
-import { Hamburger as HamburgerIcon } from './hamburger';
-
-/**
- * Hamburger icon - Storybook Meta
- */
-export default {
- title: 'Atoms/Illustrations/Icons',
- component: HamburgerIcon,
- argTypes: {
- className: {
- control: {
- type: 'text',
- },
- description: 'Set additional classnames to the icon wrapper.',
- table: {
- category: 'Styles',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- iconClassName: {
- control: {
- type: 'text',
- },
- description: 'Set additional classnames to the icon.',
- table: {
- category: 'Styles',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- },
-} as ComponentMeta<typeof HamburgerIcon>;
-
-const Template: ComponentStory<typeof HamburgerIcon> = (args) => (
- <HamburgerIcon {...args} />
-);
-
-/**
- * Icons Stories - Hamburger
- */
-export const Hamburger = Template.bind({});