From 3272ac336da52364ace5ed76d8f609d4088ffc06 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 28 Sep 2023 18:19:00 +0200 Subject: refactor(components): make Logo component ESlint compliant I also renamed the title prop to heading because title already exists as HTML attribute. --- src/components/atoms/images/logo/logo.stories.tsx | 34 +++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/components/atoms/images/logo/logo.stories.tsx (limited to 'src/components/atoms/images/logo/logo.stories.tsx') diff --git a/src/components/atoms/images/logo/logo.stories.tsx b/src/components/atoms/images/logo/logo.stories.tsx new file mode 100644 index 0000000..cfccb65 --- /dev/null +++ b/src/components/atoms/images/logo/logo.stories.tsx @@ -0,0 +1,34 @@ +import type { ComponentMeta, ComponentStory } from '@storybook/react'; +import { Logo as LogoComponent } from './logo'; + +/** + * Logo - Storybook Meta + */ +export default { + title: 'Atoms/Images', + component: LogoComponent, + argTypes: { + heading: { + control: { + type: 'text', + }, + description: 'The SVG title.', + table: { + category: 'Accessibility', + }, + type: { + name: 'string', + required: false, + }, + }, + }, +} as ComponentMeta; + +const Template: ComponentStory = (args) => ( + +); + +/** + * Images Stories - Logo + */ +export const Logo = Template.bind({}); -- cgit v1.2.3