This commit is contained in:
Vula Builder
2026-07-27 17:52:34 +00:00
parent b528dbba1c
commit 73fb480f67
+27
View File
@@ -0,0 +1,27 @@
'use client'
import { cn } from "@/lib/utils"
import { forwardRef } from "react"
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
className?: string
}
const Input = forwardRef<HTMLInputElement, InputProps>(
({ className, type, ...props }, ref) => {
return (
<input
type={type}
className={cn(
"flex h-10 w-full rounded-md border border-[#e7eaef] bg-white px-3 py-2 text-sm text-[#101418] placeholder:text-[#9ca3af] focus:outline-none focus:border-[#d4af37] focus:ring-1 focus:ring-[#d4af37] disabled:cursor-not-allowed disabled:opacity-50 file:border-0 file:bg-transparent file:text-sm file:font-medium",
className
)}
ref={ref}
{...props}
/>
)
}
)
Input.displayName = "Input"
export default Input