2026-01-11 02:19:02 +00:00
|
|
|
import * as React from "react"
|
|
|
|
|
import { cn } from "@/lib/utils"
|
2025-12-03 21:56:50 +00:00
|
|
|
|
2026-01-11 02:19:02 +00:00
|
|
|
export interface InputProps
|
|
|
|
|
extends React.InputHTMLAttributes<HTMLInputElement> {}
|
2025-12-03 21:56:50 +00:00
|
|
|
|
|
|
|
|
const Input = React.forwardRef<HTMLInputElement, InputProps>(
|
2026-01-11 02:19:02 +00:00
|
|
|
({ className, type, ...props }, ref) => {
|
2026-01-07 09:31:02 +00:00
|
|
|
return (
|
|
|
|
|
<input
|
2026-01-11 02:19:02 +00:00
|
|
|
type={type}
|
|
|
|
|
className={cn(
|
2026-01-11 15:30:43 +00:00
|
|
|
"flex h-10 w-full rounded-xl border border-white/10 bg-black/20 px-4 py-2.5 text-sm ring-offset-kodo-void file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-kodo-secondary/50 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-kodo-cyan focus-visible:border-kodo-cyan/50 focus-visible:bg-black/30 disabled:cursor-not-allowed disabled:opacity-50 transition-all duration-200 text-white backdrop-blur-sm hover:border-white/15",
|
2026-01-11 02:19:02 +00:00
|
|
|
className
|
|
|
|
|
)}
|
|
|
|
|
ref={ref}
|
|
|
|
|
{...props}
|
2026-01-07 09:31:02 +00:00
|
|
|
/>
|
2026-01-11 02:19:02 +00:00
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
Input.displayName = "Input"
|
2026-01-07 09:31:02 +00:00
|
|
|
|
2026-01-11 02:19:02 +00:00
|
|
|
export { Input }
|