cascnauipackages
Version:
Repo for Common Components for CASCNA
29 lines (24 loc) • 598 B
JavaScript
/* Imports for base styles like Color, Fonts */
import FONT_CONSTANTS from '../../constants/fontConstants';
import COLOR_CONSTANTS from '../../constants/colorConstants';
const {
FONT_FAMILY_HELVETICA,
FONT_WEIGHT_BOLD,
FONT_STYLE_NORMAL,
} = FONT_CONSTANTS;
/* Defining base style for header text */
const {
BLACK,
} = COLOR_CONSTANTS;
const styles = {
titleStyle: {
color: BLACK,
fontSize: 16,
fontFamily: FONT_FAMILY_HELVETICA,
fontWeight: FONT_WEIGHT_BOLD,
fontStyle: FONT_STYLE_NORMAL,
paddingTop: 24,
paddingBottom: 24,
},
};
export default styles;