import type { Meta, StoryFn } from '@storybook/html'; import { createButton, ButtonProps } from './Button'; export default { title: 'Example/Button', argTypes: { label: { control: 'text' }, primary: { control: 'boolean' }, backgroundColor: { control: 'color' }, size: { control: { type: 'select', options: ['small', 'medium', 'large'] }, }, onClick: { action: 'onClick' }, }, } as Meta; const Template: Story = (args) => { // You can either use a function to create DOM elements or use a plain html string! // return `
${label}
`; return createButton(args); }; export const Primary = Template.bind({}); Primary.args = { primary: true, label: 'Button', }; export const Secondary = Template.bind({}); Secondary.args = { label: 'Button', }; export const Large = Template.bind({}); Large.args = { size: 'large', label: 'Button', }; export const Small = Template.bind({}); Small.args = { size: 'small', label: 'Button', };