Getting heading to render correctly?

This commit is contained in:
Violet Caulfield
2024-11-23 11:28:09 -06:00
parent c927ad900d
commit 0164a6e372

View File

@@ -28,6 +28,6 @@ export function Label(props: LabelProps): React.JSX.Element {
export function Heading({ children }: { children: string }): React.JSX.Element {
return (
<H1 marginVertical={30} fontWeight={900}>{ children }</H1>
<H1 marginVertical={30} size="$3" fontWeight="900">{ children }</H1>
)
}