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

Function BodyBold

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected