import { ComponentMeta, ComponentStory } from '@storybook/react'; import 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; const Template: ComponentStory = (args) => ( ); /** * Images Stories - Logo */ export const Logo = Template.bind({}); er'> cgit logo index : www.armandphilippot.com
The frontend of my personal website.Armand Philippot
summaryrefslogtreecommitdiffstats
blob: 4501f8f382833d2af88f77ada5e868ddba4407af (plain)
1
2
3
4
5
6
7
8
9
10
11