Deploy
This commit is contained in:
@@ -0,0 +1,21 @@
|
|||||||
|
'use client'
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
||||||
|
error?: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function Input({ className, error, ...props }: InputProps) {
|
||||||
|
return (
|
||||||
|
<input
|
||||||
|
className={cn(
|
||||||
|
"flex h-10 w-full rounded-md border border-border bg-background px-3 py-2 text-sm text-foreground placeholder:text-muted-foreground focus:outline-none focus:border-primary transition-colors",
|
||||||
|
error && "border-red-500 focus:border-red-500",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
aria-invalid={error ? "true" : undefined}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user