Files
yaak/src-web/components/core/FormattedError.tsx
2023-06-12 13:20:42 -07:00

12 lines
273 B
TypeScript

interface Props {
children: string;
}
export function FormattedError({ children }: Props) {
return (
<pre className="text-sm select-auto cursor-text bg-gray-100 p-3 rounded whitespace-normal border border-red-500 border-dashed">
{children}
</pre>
);
}