Skip to content

Commit

Permalink
fix: button story (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonai authored and vapersmile committed Feb 12, 2024
1 parent 6e32ade commit 9279b44
Showing 1 changed file with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ const meta = {
argTypes: {
color: {
control: 'select',
options: [
'primary',
'dark',
'gray',
'red',
'pink',
'grape',
'violet',
'indigo',
'blue',
'cyan',
'teal',
'green',
'lime',
'yellow',
'orange',
],
options: {
blue: 'blue',
cyan: 'cyan',
dark: 'dark',
grape: 'grape',
gray: 'gray',
green: 'green',
indigo: 'indigo',
lime: 'lime',
orange: 'orange',
pink: 'pink',
primary: '',
red: 'red',
teal: 'teal',
violet: 'violet',
yellow: 'yellow',
},
},
disabled: {
control: 'boolean',
Expand All @@ -49,7 +49,7 @@ type IStory = StoryObj<typeof meta>;
const { Activity } = iconsElements;
export const Buttons: IStory = {
args: {
color: 'primary',
color: '',
disabled: false,
},
render: (props) => (
Expand Down

0 comments on commit 9279b44

Please sign in to comment.