mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
22 lines
605 B
JavaScript
22 lines
605 B
JavaScript
import { TextVariant } from '../../../helpers/constants/design-system';
|
|
|
|
export const TEXT_VARIANTS = {
|
|
DISPLAY_MD: TextVariant.displayMd,
|
|
HEADING_LG: TextVariant.headingLg,
|
|
HEADING_MD: TextVariant.headingMd,
|
|
HEADING_SM: TextVariant.headingSm,
|
|
BODY_LG_MEDIUM: TextVariant.bodyLgMedium,
|
|
BODY_MD: TextVariant.bodyMd,
|
|
BODY_MD_BOLD: TextVariant.bodyMdBold,
|
|
BODY_SM: TextVariant.bodySm,
|
|
BODY_SM_BOLD: TextVariant.bodySmBold,
|
|
BODY_XS: TextVariant.bodyXs,
|
|
INHERIT: TextVariant.inherit,
|
|
};
|
|
|
|
export const TEXT_DIRECTIONS = {
|
|
LEFT_TO_RIGHT: 'ltr',
|
|
RIGHT_TO_LEFT: 'rtl',
|
|
AUTO: 'auto',
|
|
};
|