mirror of https://github.com/mkrhere/pw2
Muthu Kumar
4 years ago
3 changed files with 20 additions and 22 deletions
@ -0,0 +1,13 @@ |
|||||
|
import { css } from "emotion"; |
||||
|
|
||||
|
const Heading = ({ children, ...props }) => ( |
||||
|
<h1 |
||||
|
className={css` |
||||
|
line-height: 1em; |
||||
|
`}
|
||||
|
{...props}> |
||||
|
{children} |
||||
|
</h1> |
||||
|
); |
||||
|
|
||||
|
export default Heading; |
Loading…
Reference in new issue