cascnauipackages
Version:
Repo for Common Components for CASCNA
27 lines (23 loc) • 536 B
JavaScript
import FONT_CONSTANTS from '../../constants/fontConstants';
import COLOR_CONSTANTS from '../../constants/colorConstants';
const {
FONT_FAMILY_HELVETICA,
FONT_WEIGHT_BOLD,
FONT_STYLE_NORMAL,
FONT_SIZE_SMALL,
FONT_SPACING_BIG,
} = FONT_CONSTANTS;
const {
BLACK,
} = COLOR_CONSTANTS;
const styles = {
titleStyle: {
color: BLACK,
fontSize: FONT_SIZE_SMALL,
fontFamily: FONT_FAMILY_HELVETICA,
fontWeight: FONT_WEIGHT_BOLD,
fontStyle: FONT_STYLE_NORMAL,
lineHeight: 18,
},
};
export default styles;