export const Playground: Story = {
args: {
text: defaultText,
},
parameters: {
docs: {
canvas: {
sourceState: 'shown',
},
},
},
}
export const CustomContent: Story = {
args: {
content: ,
},
}
export const Stacked: Story = {
render: (args) => (
),
args: {
layout: 'stacked',
content: ,
},
}
export const SceneExample: Story = {
args: {
illustration: ,
illustrationType: 'scene',
text: defaultText,
},
}
export const Variants: Story = {
render: (args) => (
{variantsMap.map((variant) => (
))}
),
args: {
text: defaultText,
},
}
export const ActionsSlot: Story = {
args: {
layout: 'default',
illustration: ,
content: ,
actionsSlot: (
<>
>
),
},
render: (args) => (
),
}
export const MultipleActions: Story = {
args: {
layout: 'default',
illustration: ,
content: ,
actionsSlot: (
<>
Label
>
),
},
render: (args) => (
),
}
export const ActionsSlotWithTooltips: Story = {
args: {
layout: 'default',
illustration: ,
content: ,
actionsSlot: (
<>
Tooltip Content
Label
Tooltip secondary content
>
),
},
render: (args) => (
),
}