mirror of
https://github.com/vas3k/TaxHacker.git
synced 2026-01-01 19:19:38 -06: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>
|
|
}
|