MCPcopy Create free account
hub / github.com/triggerdotdev/jsonhero-web / ExtraLargeTitle

Function ExtraLargeTitle

app/components/Primitives/ExtraLargeTitle.tsx:3–10  ·  view source on GitHub ↗
({
  className,
  children,
})

Source from the content-addressed store, hash-verified

1import { FunctionComponent } from "react";
2
3export const ExtraLargeTitle: FunctionComponent<{ className?: string }> = ({
4 className,
5 children,
6}) => {
7 return (
8 <h1 className={`font-sans font-bold text-6xl ${className}`}>{children}</h1>
9 );
10};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected