Files
TaxHacker/components/forms/error.tsx
2025-04-03 13:07:54 +02:00

6 lines
230 B
TypeScript

import { cn } from "@/lib/utils"
export function FormError({ children, className }: { children: React.ReactNode; className?: string }) {
return <p className={cn("text-red-500 mt-4 overflow-hidden", className)}>{children}</p>
}