mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
30520a3352
* button link housekeeping Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net>
16 lines
292 B
JavaScript
16 lines
292 B
JavaScript
import { SIZES } from '../../../helpers/constants/design-system';
|
|
|
|
export const BUTTON_SIZES = {
|
|
SM: SIZES.SM,
|
|
MD: SIZES.MD,
|
|
LG: SIZES.LG,
|
|
INHERIT: SIZES.INHERIT,
|
|
AUTO: SIZES.AUTO,
|
|
};
|
|
|
|
export const BUTTON_TYPES = {
|
|
PRIMARY: 'primary',
|
|
SECONDARY: 'secondary',
|
|
LINK: 'link',
|
|
};
|