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

Function SmallTitle

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected