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

Function Mono

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected