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

9 lines
224 B
TypeScript

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