9 lines
219 B
TypeScript
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>;
|
|
};
|