import { PropsWithChildren } from 'react'; import clsx from 'clsx'; import { AlertTriangle } from 'lucide-react'; import { Icon } from '@@/Icon'; interface Props { className?: string; } export function FormError({ children, className }: PropsWithChildren) { return (

{children}

); }