♻️(docs) various update for storybook

Color fixes due to new tokens architecture and few rewords.
This commit is contained in:
Nathan Vasse
2025-09-23 15:19:58 +02:00
committed by NathanVss
parent 2e1f28f5ec
commit 33c5866c28
12 changed files with 201 additions and 160 deletions

View File

@@ -27,7 +27,9 @@ export const Default = {
render: Template,
args: {
label: "Your label here",
children: <span className="clr-gray-800">Hello world</span>,
children: (
<span className="clr-content-semantic-neutral-primary">Hello world</span>
),
},
};
@@ -44,6 +46,8 @@ export const NoLabel = {
args: {
label: "Your label here",
hideLabel: true,
children: <span className="clr-gray-800">Hello world</span>,
children: (
<span className="clr-content-semantic-neutral-primary">Hello world</span>
),
},
};