- Remove modalPosition related code now that all modals are centered - Allow parent components to set text of the close link - Updates styling for specific modals so that they match their Heritage counterparts
11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
export const buttonVariants = Object.freeze({
|
|
primary: 'primary',
|
|
secondary: 'secondary',
|
|
success: 'success',
|
|
link: 'link',
|
|
navigation: 'navigation'
|
|
});
|
|
export const dropdownVariants = Object.freeze({
|
|
primary: 'primary',
|
|
compact: 'compact'
|
|
});
|