sb some more colors
This commit is contained in:
parent
7aab6ab368
commit
ec22364ef3
1 changed files with 31 additions and 15 deletions
|
|
@ -14,11 +14,27 @@ const meta: Meta<Couleurs> = {
|
||||||
export default meta;
|
export default meta;
|
||||||
type Story = StoryObj<Couleurs>;
|
type Story = StoryObj<Couleurs>;
|
||||||
|
|
||||||
export const Example: Story = {
|
export const ExampleMain: Story = {
|
||||||
render: (args) => ({props: args}),
|
render: (args) => ({props: args}),
|
||||||
args: {
|
args: {
|
||||||
hexaCode: '#165DFF',
|
hexaCode: '#165DFF',
|
||||||
name: 'Primary 600'
|
name: 'Primary Main'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
export const ExampleMain100: Story = {
|
||||||
|
render: (args) => ({props: args}),
|
||||||
|
args: {
|
||||||
|
hexaCode: '#96BEE4',
|
||||||
|
name: 'Primary 100'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
export const ExampleSecondary100: Story = {
|
||||||
|
render: (args) => ({props: args}),
|
||||||
|
args: {
|
||||||
|
hexaCode: '#BCE0DE',
|
||||||
|
name: 'Secondary 100'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue