summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/links/social-link.stories.tsx
blob: 977ae6b99f55b0f2befd40ebbdbc559f68a6ae6d (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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<typeof SocialLink>;

const Template: ComponentStory<typeof SocialLink> = (args) => (
  <SocialLink {...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: '#',
};