mirror of
https://github.com/fastapi/full-stack-fastapi-template.git
synced 2026-09-26 06:59:01 +00:00
19 lines
405 B
TypeScript
19 lines
405 B
TypeScript
import { Heading as BaseHeading } from "@react-email/components"
|
|
|
|
type HeadingProps = React.PropsWithChildren
|
|
|
|
export const Heading = ({ children }: HeadingProps) => (
|
|
<BaseHeading as="h1" style={headingStyle}>
|
|
{children}
|
|
</BaseHeading>
|
|
)
|
|
|
|
const headingStyle = {
|
|
color: "#17212b",
|
|
fontSize: "26px",
|
|
fontWeight: "700",
|
|
letterSpacing: "-0.3px",
|
|
lineHeight: "34px",
|
|
margin: "0 0 20px",
|
|
}
|