UNPKG

@totalsoft/rocket-ui

Version:

A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.

33 lines 802 B
export const defaultFont = { fontFamily: 'Source Sans Pro', fontSize: 14, lineHeight: '1.5em', fontWeight: '300', letterSpacing: '0.02857em' }; export const generateTypography = (palette) => ({ ...defaultFont, defaultFont, useNextVariants: true, htmlFontSize: 14, fontWeightMedium: 300, button: { ...defaultFont, textAlign: 'center', fontStretch: 'normal', fontStyle: 'normal' }, body: defaultFont, header: { title: { borderRadius: '3px', textTransform: 'none', fontWeight: 'bold', color: palette.primary.main, '&:hover,&:focus': { background: 'transparent' } } } }); //# sourceMappingURL=typography.js.map