aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/images/logo.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-09-28 18:19:00 +0200
committerArmand Philippot <git@armandphilippot.com>2023-10-24 12:25:00 +0200
commit3272ac336da52364ace5ed76d8f609d4088ffc06 (patch)
tree3bfffa119ddfffce6313def2932824f2719ad4b7 /src/components/atoms/images/logo.stories.tsx
parent837e0e904c40f7b87561c34ca3f49edd5d8d1c52 (diff)
refactor(components): make Logo component ESlint compliant
I also renamed the title prop to heading because title already exists as HTML attribute.
Diffstat (limited to 'src/components/atoms/images/logo.stories.tsx')
-rw-r--r--src/components/atoms/images/logo.stories.tsx34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/components/atoms/images/logo.stories.tsx b/src/components/atoms/images/logo.stories.tsx
deleted file mode 100644
index bf19b34..0000000
--- a/src/components/atoms/images/logo.stories.tsx
+++ /dev/null
@@ -1,34 +0,0 @@
-import { ComponentMeta, ComponentStory } from '@storybook/react';
-import { Logo as LogoComponent } from './logo';
-
-/**
- * Logo - Storybook Meta
- */
-export default {
- title: 'Atoms/Illustrations/Images',
- component: LogoComponent,
- argTypes: {
- title: {
- control: {
- type: 'text',
- },
- description: 'The SVG title.',
- table: {
- category: 'Accessibility',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- },
-} as ComponentMeta<typeof LogoComponent>;
-
-const Template: ComponentStory<typeof LogoComponent> = (args) => (
- <LogoComponent {...args} />
-);
-
-/**
- * Images Stories - Logo
- */
-export const Logo = Template.bind({});