aboutsummaryrefslogtreecommitdiffstats
path: root/public/prism/prism-phpdoc.min.js
Commit message (Expand)AuthorAgeFilesLines
* chore: add prismjs for syntax highlightingArmand Philippot2021-12-301-0/+30
>7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
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<typeof LogoComponent>;

const Template: ComponentStory<typeof LogoComponent> = (args) => (
  <LogoComponent {...args} />
);

/**
 * Images Stories - Logo
 */
export const Logo = Template.bind({});