const baseStyle = { // fontFamily: 'heading', // lineHeight: 'shorter', fontWeight: 'bold', }; const sizes = { '2xl': { fontSize: '4xl' }, 'xl': { fontSize: '3xl' }, 'lg': { fontSize: '2xl' }, 'md': { fontSize: 'xl' }, 'sm': { fontSize: 'md' }, 'xs': { fontSize: 'sm' }, }; const defaultProps = { size: 'xl' }; export default { baseStyle, sizes, defaultProps, };