Added button variant support Added button size support Merged button features from modal button to button component Removed modal button component Created button mixins for creating buttons Created initial button variants using mixins Moved client button customizations to mixins
8 lines
124 B
JavaScript
8 lines
124 B
JavaScript
const buttonSizes = Object.freeze({
|
|
xs: 'xs',
|
|
sm: 'sm',
|
|
md: 'md',
|
|
lg: 'lg'
|
|
});
|
|
|
|
export default buttonSizes;
|