feat(fs.dev): Added theme support
This commit is contained in:
parent
84ffe26a76
commit
e1ecd0cb98
26 changed files with 834 additions and 96 deletions
13
packages/freesewing.shared/components/elements/h1.js
Normal file
13
packages/freesewing.shared/components/elements/h1.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
const H1 = props => (
|
||||
<h1
|
||||
className={`
|
||||
text-4xl py-4 font-bold
|
||||
lg:text-6xl
|
||||
`}
|
||||
style={{letterSpacing: '-0.15rem'}}
|
||||
>
|
||||
{props.children}
|
||||
</h1>
|
||||
)
|
||||
|
||||
export default H1
|
Loading…
Add table
Add a link
Reference in a new issue