aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/close.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/close.stories.tsx')
-rw-r--r--src/components/atoms/icons/close.stories.tsx47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/components/atoms/icons/close.stories.tsx b/src/components/atoms/icons/close.stories.tsx
deleted file mode 100644
index d075141..0000000
--- a/src/components/atoms/icons/close.stories.tsx
+++ /dev/null
@@ -1,47 +0,0 @@
-import { ComponentMeta, ComponentStory } from '@storybook/react';
-import { Close as CloseIcon } from './close';
-
-/**
- * Close icon - Storybook Meta
- */
-export default {
- title: 'Atoms/Illustrations/Icons',
- component: CloseIcon,
- argTypes: {
- 'aria-hidden': {
- control: {
- type: null,
- },
- description: 'Should the svg be hidden from assistive technologies?',
- table: {
- category: 'Accessibility',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- className: {
- control: {
- type: 'text',
- },
- description: 'Set additional classnames.',
- table: {
- category: 'Styles',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- },
-} as ComponentMeta<typeof CloseIcon>;
-
-const Template: ComponentStory<typeof CloseIcon> = (args) => (
- <CloseIcon {...args} />
-);
-
-/**
- * Icons Stories - Close
- */
-export const Close = Template.bind({});