DigitalConsumer.ISS/src/constants/button-sizes.js
Josh Dassinger fa965468b4 Initial work on moving heritage button styles to NextGen button component
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
2026-01-05 10:42:15 -06:00

8 lines
124 B
JavaScript

const buttonSizes = Object.freeze({
xs: 'xs',
sm: 'sm',
md: 'md',
lg: 'lg'
});
export default buttonSizes;