mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
feat(content-switcher): support light variant
This commit is contained in:
parent
ffa4ac08f3
commit
9a78f9900d
3 changed files with 10 additions and 1 deletions
|
@ -5,7 +5,10 @@ export default { title: "ContentSwitcher", decorators: [withKnobs] };
|
|||
|
||||
export const Default = () => ({
|
||||
Component,
|
||||
props: { disabled: boolean("Disabled (disabled)", false) },
|
||||
props: {
|
||||
disabled: boolean("Disabled (disabled)", false),
|
||||
light: boolean("Light variant (light)", false),
|
||||
},
|
||||
});
|
||||
|
||||
export const Selected = () => ({
|
||||
|
@ -13,5 +16,6 @@ export const Selected = () => ({
|
|||
props: {
|
||||
story: "selected",
|
||||
disabled: boolean("Disabled (disabled)", false),
|
||||
light: boolean("Light variant (light)", false),
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue