import { clsx } from 'clsx'; import { BiErrorAlt } from 'react-icons/bi'; export default function ErrorNote({ children, }: { children: React.ReactNode }) { return (
{children}
); }