mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 21:35:19 +00:00
6 lines
230 B
TypeScript
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>
|
|
}
|