aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
Commit message (Collapse)AuthorAgeFilesLines
* build: add tools to enforce some code/commit rulesArmand Philippot2021-12-121-1/+1
|
* chore: initial commitArmand Philippot2021-12-121-0/+3
25 26 27 28
import { ComponentMeta, ComponentStory } from '@storybook/react';
import EnvelopIcon from './envelop';

export default {
  title: 'Atoms/Icons',
  component: EnvelopIcon,
  argTypes: {
    className: {
      control: {
        type: 'text',
      },
      description: 'Set additional classnames.',
      table: {
        category: 'Styles',
      },
      type: {
        name: 'string',
        required: false,
      },
    },
  },
} as ComponentMeta<typeof EnvelopIcon>;

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

export const Envelop = Template.bind({});