23 lines
695 B
TypeScript
23 lines
695 B
TypeScript
'use client'
|
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
error?: string
|
|
}
|
|
|
|
export default function Input({ className, error, ...props }: InputProps) {
|
|
return (
|
|
<div className="w-full">
|
|
<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 focus:ring-0",
|
|
error && "border-red-500 focus:border-red-500",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
{error && <p className="mt-1 text-sm text-red-500">{error}</p>}
|
|
</div>
|
|
)
|
|
} |