import { ExclamationTriangleIcon } from "@heroicons/react/24/outline"; export const ErrorNotice = ({ header, body, icon, }: { header?: string; body?: string; icon?: boolean; }) => { return ( <> {header ? (
{icon ? (
) : undefined} {header} {body ? (

{body}

) : undefined}
) : undefined} ); };