Files
jsonhero-web/app/components/Primitives/Mono.tsx
T
2022-03-01 09:31:09 +00:00

9 lines
219 B
TypeScript

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