diff options
Diffstat (limited to 'src/components/atoms/images/logo.stories.tsx')
| -rw-r--r-- | src/components/atoms/images/logo.stories.tsx | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/components/atoms/images/logo.stories.tsx b/src/components/atoms/images/logo.stories.tsx new file mode 100644 index 0000000..fbc7501 --- /dev/null +++ b/src/components/atoms/images/logo.stories.tsx @@ -0,0 +1,28 @@ +import { ComponentMeta, ComponentStory } from '@storybook/react'; +import LogoComponent from './logo'; + +export default { + title: 'Atoms/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} /> +); + +export const Logo = Template.bind({}); |
