import React, { type ComponentPropsWithRef } from 'react'; import { HiExclamationCircle } from 'react-icons/hi2'; import { showErrorToast } from '../../toast'; import { cn } from '../../utils/cn'; export const ErrorPlaceholder = ({ error, className, ...props }: { error: any } & ComponentPropsWithRef<'div'>) => { if (!error) { return null; } return (
{ showErrorToast(error); }} >
); };