aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/forms/labelled-boolean-field.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-05-30 19:44:37 +0200
committerArmand Philippot <git@armandphilippot.com>2022-05-31 23:15:11 +0200
commit994ad1bec193b2d1a6e0d38d6ef3f3d2bd66c3ea (patch)
tree53df625928d50ef11ceca6b4d0937d433b576aec /src/components/molecules/forms/labelled-boolean-field.stories.tsx
parentae384aec5084b9fb9f02166890686a37d1260ef2 (diff)
chore: add a RadioGroup component
Diffstat (limited to 'src/components/molecules/forms/labelled-boolean-field.stories.tsx')
-rw-r--r--src/components/molecules/forms/labelled-boolean-field.stories.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/molecules/forms/labelled-boolean-field.stories.tsx b/src/components/molecules/forms/labelled-boolean-field.stories.tsx
index 643f533..6098b51 100644
--- a/src/components/molecules/forms/labelled-boolean-field.stories.tsx
+++ b/src/components/molecules/forms/labelled-boolean-field.stories.tsx
@@ -10,14 +10,15 @@ export default {
title: 'Molecules/Forms/Boolean',
component: LabelledBooleanField,
args: {
+ checked: false,
+ hidden: false,
label,
labelSize: 'small',
- checked: false,
},
argTypes: {
checked: {
control: {
- type: 'boolean',
+ type: null,
},
description: 'Should the option be checked?',
type: {