update storybook for button since now filled is true by default

This commit is contained in:
Kiril Videlov 2023-03-28 16:18:35 +02:00 committed by Kiril Videlov
parent 1b1459ee55
commit 1738936a66

View File

@ -22,6 +22,7 @@ type Story = StoryObj<Button>;
export const Primary: Story = {
args: {
primary: true,
filled: false,
label: 'Button'
}
};
@ -35,6 +36,7 @@ export const PrimaryFilled: Story = {
export const PrimarySmall: Story = {
args: {
primary: true,
filled: false,
small: true,
label: 'Button'
}
@ -43,6 +45,7 @@ export const PrimarySmall: Story = {
export const PrimaryWide: Story = {
args: {
primary: true,
filled: false,
wide: true,
label: 'Button'
}
@ -51,6 +54,7 @@ export const PrimaryWide: Story = {
export const PrimarySmallWide: Story = {
args: {
primary: true,
filled: false,
wide: true,
small: true,
label: 'Button'
@ -70,6 +74,7 @@ export const PrimaryFilledSmall: Story = {
export const Default: Story = {
args: {
primary: false,
filled: false,
label: 'Button'
}
};
@ -85,6 +90,7 @@ export const DefaultFilled: Story = {
export const DefaultSmall: Story = {
args: {
primary: false,
filled: false,
small: true,
label: 'Button'
}