Files
yaak-mountain-loop/src-web/components/core/FormattedError.tsx
2024-06-03 13:49:51 -07:00

20 lines
448 B
TypeScript

import classNames from 'classnames';
import type { ReactNode } from 'react';
interface Props {
children: ReactNode;
}
export function FormattedError({ children }: Props) {
return (
<pre
className={classNames(
'w-full select-auto cursor-text bg-background-highlight-secondary p-3 rounded',
'whitespace-pre-wrap border border-fg-danger border-dashed overflow-x-auto',
)}
>
{children}
</pre>
);
}