summaryrefslogtreecommitdiffstats
path: root/src/components/molecules/buttons/help-button.stories.tsx
blob: 4968b272000880bdb472d2460f1e8fd791f8c807 (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
import { ComponentMeta, ComponentStory } from '@storybook/react';
import HelpButtonComponent from './help-button';

/**
 * HelpButton - Storybook Meta
 */
export default {
  title: 'Molecules/Buttons',
  component: HelpButtonComponent,
  argTypes: {
    className: {
      control: {
        type: 'text',
      },
      description: 'Set additional classnames to the button wrapper.',
      table: {
        category: 'Options',
      },
      type: {
        name: 'string',
        required: false,
      },
    },
    onClick: {
      control: {
        type: null,
      },
      description: 'A callback function to handle click on button.',
      table: {
        category: 'Events',
      },
      type: {
        name: 'function',
        required: false,
      },
    },
  },
} as ComponentMeta<typeof HelpButtonComponent>;

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

/**
 * Help Button Stories - Level 1
 */
export const HelpButton = Template.bind({});