Skip to content

Commit

Permalink
#289 Spinner: Change initial value of size to "small"
Browse files Browse the repository at this point in the history
  • Loading branch information
zaki-yama committed Jun 21, 2019
1 parent 96d1acf commit fd9d863
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions stories/SpinnerStories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ storiesOf('Spinner', module)
'Controlled with knobs',
() => {
const sizeOptions = {
'(none)': '',
small: 'small',
medium: 'medium',
large: 'large',
};
const size = select('size', sizeOptions, '') as SpinnerSize;
const size = select('size', sizeOptions, 'small') as SpinnerSize;
const typeOptions = {
'(none)': '',
brand: 'brand',
Expand Down

0 comments on commit fd9d863

Please sign in to comment.