aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/arrow.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/arrow.stories.tsx')
-rw-r--r--src/components/atoms/icons/arrow.stories.tsx61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/components/atoms/icons/arrow.stories.tsx b/src/components/atoms/icons/arrow.stories.tsx
deleted file mode 100644
index a49be55..0000000
--- a/src/components/atoms/icons/arrow.stories.tsx
+++ /dev/null
@@ -1,61 +0,0 @@
-import { ComponentMeta, ComponentStory } from '@storybook/react';
-import { Arrow as ArrowIcon } from './arrow';
-
-/**
- * Arrow icon - Storybook Meta
- */
-export default {
- title: 'Atoms/Illustrations/Icons',
- component: ArrowIcon,
- 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,
- },
- },
- direction: {
- control: {
- type: 'select',
- },
- description: 'An arrow icon.',
- options: ['bottom', 'left', 'right', 'top'],
- type: {
- name: 'string',
- required: false,
- },
- },
- },
-} as ComponentMeta<typeof ArrowIcon>;
-
-const Template: ComponentStory<typeof ArrowIcon> = (args) => (
- <ArrowIcon {...args} />
-);
-
-/**
- * Icons Stories - Arrow
- */
-export const Arrow = Template.bind({});
-Arrow.args = {
- direction: 'right',
-};