aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/moon.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/moon.stories.tsx')
-rw-r--r--src/components/atoms/icons/moon.stories.tsx60
1 files changed, 0 insertions, 60 deletions
diff --git a/src/components/atoms/icons/moon.stories.tsx b/src/components/atoms/icons/moon.stories.tsx
deleted file mode 100644
index a8faf03..0000000
--- a/src/components/atoms/icons/moon.stories.tsx
+++ /dev/null
@@ -1,60 +0,0 @@
-import { ComponentMeta, ComponentStory } from '@storybook/react';
-import { Moon as MoonIcon } from './moon';
-
-/**
- * Moon icon - Storybook Meta
- */
-export default {
- title: 'Atoms/Illustrations/Icons',
- component: MoonIcon,
- 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,
- },
- },
- title: {
- control: {
- type: 'text',
- },
- description: 'The SVG title.',
- table: {
- category: 'Accessibility',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- },
-} as ComponentMeta<typeof MoonIcon>;
-
-const Template: ComponentStory<typeof MoonIcon> = (args) => (
- <MoonIcon {...args} />
-);
-
-/**
- * Icons Stories - Moon
- */
-export const Moon = Template.bind({});