1
0
Fork 0
freesewing/packages/freesewing.shared/components/elements/h1.js

14 lines
194 B
JavaScript
Raw Normal View History

2021-12-11 14:04:05 +01:00
const H1 = props => (
<h1
className={`
text-4xl py-4 font-bold
lg:text-6xl
`}
style={{letterSpacing: '-0.15rem'}}
>
{props.children}
</h1>
)
export default H1