diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-04 15:22:35 +0200 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-04 15:22:35 +0200 | 
| commit | 1fe43a98098eeef254a26b21d77e2d0ce8e55c30 (patch) | |
| tree | dec374b00da9117d52aa6c0cecae59c1cd75b496 /src/components/molecules/layout/flipping-logo.stories.tsx | |
| parent | a46f8f9ffeb2c32ca21d58ce13bff189fec84cb0 (diff) | |
chore: add a FlippingLogo component
Diffstat (limited to 'src/components/molecules/layout/flipping-logo.stories.tsx')
| -rw-r--r-- | src/components/molecules/layout/flipping-logo.stories.tsx | 53 | 
1 files changed, 53 insertions, 0 deletions
| diff --git a/src/components/molecules/layout/flipping-logo.stories.tsx b/src/components/molecules/layout/flipping-logo.stories.tsx new file mode 100644 index 0000000..1508269 --- /dev/null +++ b/src/components/molecules/layout/flipping-logo.stories.tsx @@ -0,0 +1,53 @@ +import { ComponentMeta, ComponentStory } from '@storybook/react'; +import FlippingLogoComponent from './flipping-logo'; + +export default { +  title: 'Molecules/Layout', +  component: FlippingLogoComponent, +  argTypes: { +    additionalClasses: { +      control: { +        type: 'text', +      }, +      description: 'Adds additional classes to the logo wrapper.', +      table: { +        category: 'Options', +      }, +      type: { +        name: 'string', +        required: false, +      }, +    }, +    altText: { +      control: { +        type: 'text', +      }, +      description: 'Photo alternative text.', +      type: { +        name: 'string', +        required: true, +      }, +    }, +    photo: { +      control: { +        type: 'text', +      }, +      description: 'Photo url.', +      type: { +        name: 'string', +        required: true, +      }, +    }, +  }, +} as ComponentMeta<typeof FlippingLogoComponent>; + +const Template: ComponentStory<typeof FlippingLogoComponent> = (args) => ( +  <FlippingLogoComponent {...args} /> +); + +export const FlippingLogo = Template.bind({}); +FlippingLogo.args = { +  altText: 'Website picture', +  logoTitle: 'Website logo', +  photo: 'http://placeimg.com/640/480', +}; | 
