mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-04 15:14:29 +01:00
15 lines
266 B
JavaScript
15 lines
266 B
JavaScript
|
import { SIZES } from '../../../helpers/constants/design-system';
|
||
|
|
||
|
export const BUTTON_SIZES = {
|
||
|
SM: SIZES.SM,
|
||
|
MD: SIZES.MD,
|
||
|
LG: SIZES.LG,
|
||
|
AUTO: SIZES.AUTO,
|
||
|
};
|
||
|
|
||
|
export const BUTTON_TYPES = {
|
||
|
PRIMARY: 'primary',
|
||
|
SECONDARY: 'secondary',
|
||
|
LINK: 'link',
|
||
|
};
|