mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-24 05:29:51 +03:00
update storybook for button since now filled is true by default
This commit is contained in:
parent
5b87728c74
commit
2daa02a118
@ -22,6 +22,7 @@ type Story = StoryObj<Button>;
|
|||||||
export const Primary: Story = {
|
export const Primary: Story = {
|
||||||
args: {
|
args: {
|
||||||
primary: true,
|
primary: true,
|
||||||
|
filled: false,
|
||||||
label: 'Button'
|
label: 'Button'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -35,6 +36,7 @@ export const PrimaryFilled: Story = {
|
|||||||
export const PrimarySmall: Story = {
|
export const PrimarySmall: Story = {
|
||||||
args: {
|
args: {
|
||||||
primary: true,
|
primary: true,
|
||||||
|
filled: false,
|
||||||
small: true,
|
small: true,
|
||||||
label: 'Button'
|
label: 'Button'
|
||||||
}
|
}
|
||||||
@ -43,6 +45,7 @@ export const PrimarySmall: Story = {
|
|||||||
export const PrimaryWide: Story = {
|
export const PrimaryWide: Story = {
|
||||||
args: {
|
args: {
|
||||||
primary: true,
|
primary: true,
|
||||||
|
filled: false,
|
||||||
wide: true,
|
wide: true,
|
||||||
label: 'Button'
|
label: 'Button'
|
||||||
}
|
}
|
||||||
@ -51,6 +54,7 @@ export const PrimaryWide: Story = {
|
|||||||
export const PrimarySmallWide: Story = {
|
export const PrimarySmallWide: Story = {
|
||||||
args: {
|
args: {
|
||||||
primary: true,
|
primary: true,
|
||||||
|
filled: false,
|
||||||
wide: true,
|
wide: true,
|
||||||
small: true,
|
small: true,
|
||||||
label: 'Button'
|
label: 'Button'
|
||||||
@ -70,6 +74,7 @@ export const PrimaryFilledSmall: Story = {
|
|||||||
export const Default: Story = {
|
export const Default: Story = {
|
||||||
args: {
|
args: {
|
||||||
primary: false,
|
primary: false,
|
||||||
|
filled: false,
|
||||||
label: 'Button'
|
label: 'Button'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -85,6 +90,7 @@ export const DefaultFilled: Story = {
|
|||||||
export const DefaultSmall: Story = {
|
export const DefaultSmall: Story = {
|
||||||
args: {
|
args: {
|
||||||
primary: false,
|
primary: false,
|
||||||
|
filled: false,
|
||||||
small: true,
|
small: true,
|
||||||
label: 'Button'
|
label: 'Button'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user