import { ComponentMeta, ComponentStory } from '@storybook/react'; import SocialLink from './social-link'; /** * SocialLink - Storybook Meta */ export default { title: 'Atoms/Buttons/Social', component: SocialLink, argTypes: { name: { control: { type: 'select', }, description: 'Social website name.', options: ['Github', 'Gitlab', 'LinkedIn', 'Twitter'], type: { name: 'string', required: true, }, }, url: { control: { type: null, }, description: 'Social profile url.', type: { name: 'string', required: true, }, }, }, } as ComponentMeta; const Template: ComponentStory = (args) => ( ); /** * Social Link Stories - Github */ export const Github = Template.bind({}); Github.args = { name: 'Github', url: '#', }; /** * Social Link Stories - Gitlab */ export const Gitlab = Template.bind({}); Gitlab.args = { name: 'Gitlab', url: '#', }; /** * Social Link Stories - LinkedIn */ export const LinkedIn = Template.bind({}); LinkedIn.args = { name: 'LinkedIn', url: '#', }; /** * Social Link Stories - Twitter */ export const Twitter = Template.bind({}); Twitter.args = { name: 'Twitter', url: '#', }; s'> summaryrefslogtreecommitdiffstats
blob: 46e3ad4fef01b41f86294347d11faef5e6a8dece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { ComponentMeta, ComponentStory } from '@storybook/react';
import ComputerScreenIcon from './computer-screen';

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

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

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