cascnauipackages
Version:
Repo for Common Components for CASCNA
18 lines (16 loc) • 469 B
JavaScript
/* Font constants defination, defining Fonts with size as a constant and to
be used across apps */
const FONT_CONSTANTS = {
FONT_FAMILY_HELVETICA: 'HelveticaNeue',
FONT_WEIGHT_BOLD: 'bold',
FONT_STYLE_NORMAL: 'normal',
FONT_SIZE_BIG: 36,
FONT_SIZE_EXTRA_SMALL: 12,
FONT_SIZE_SMALL: 14,
FONT_SIZE_EXTRA_MEDIUM: 16,
FONT_SIZE_MEDIUM: 18,
FONT_SPACING_BIG: 1.29,
FONT_SPACING_MEDIUM: 1.25,
FONT_SIZE_LARGE: 36,
};
export default FONT_CONSTANTS;