summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/forms/label.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-08 22:36:24 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-08 23:31:58 +0200
commit0b3146f7278929c4d1b33dd8f94f34e351e5e5a9 (patch)
tree6a784b197a283a7da07c2e1df80a29fee8b3790a /src/components/atoms/forms/label.stories.tsx
parent61278678ea8a8febee0574cd0f6006492d7b15cb (diff)
chore: add a Settings modal component
Diffstat (limited to 'src/components/atoms/forms/label.stories.tsx')
-rw-r--r--src/components/atoms/forms/label.stories.tsx42
1 files changed, 37 insertions, 5 deletions
diff --git a/src/components/atoms/forms/label.stories.tsx b/src/components/atoms/forms/label.stories.tsx
index 06e8eb9..463e8ac 100644
--- a/src/components/atoms/forms/label.stories.tsx
+++ b/src/components/atoms/forms/label.stories.tsx
@@ -4,7 +4,24 @@ import LabelComponent from './label';
export default {
title: 'Atoms/Forms',
component: LabelComponent,
+ args: {
+ required: false,
+ size: 'small',
+ },
argTypes: {
+ className: {
+ control: {
+ type: 'text',
+ },
+ description: 'Add classnames to the label.',
+ table: {
+ category: 'Styles',
+ },
+ type: {
+ name: 'string',
+ required: false,
+ },
+ },
children: {
control: {
type: 'text',
@@ -32,22 +49,37 @@ export default {
description: 'Set to true if the field is required.',
table: {
category: 'Options',
+ defaultValue: { summary: false },
},
type: {
name: 'boolean',
required: false,
},
},
+ size: {
+ control: {
+ type: 'select',
+ },
+ description: 'The label size.',
+ options: ['medium', 'small'],
+ table: {
+ category: 'Options',
+ defaultValue: { summary: 'small' },
+ },
+ type: {
+ name: 'string',
+ required: false,
+ },
+ },
},
} as ComponentMeta<typeof LabelComponent>;
-const Template: ComponentStory<typeof LabelComponent> = (args) => {
- const { children, ...props } = args;
- return <LabelComponent {...props}>{children}</LabelComponent>;
-};
+const Template: ComponentStory<typeof LabelComponent> = ({
+ children,
+ ...args
+}) => <LabelComponent {...args}>{children}</LabelComponent>;
export const Label = Template.bind({});
Label.args = {
children: 'A label',
- htmlFor: 'a-field-id',
};