mirror of
https://github.com/fastapi/full-stack-fastapi-template.git
synced 2026-09-22 13:48:42 +00:00
13 lines
320 B
TypeScript
13 lines
320 B
TypeScript
import { Heading as BaseHeading } from "@react-email/components"
|
|
|
|
type HeadingProps = React.PropsWithChildren
|
|
|
|
export const Heading = ({ children }: HeadingProps) => (
|
|
<BaseHeading
|
|
as="h1"
|
|
className="text-2xl leading-8 font-semibold tracking-[-0.02em] text-body m-0 mb-5"
|
|
>
|
|
{children}
|
|
</BaseHeading>
|
|
)
|