veza/apps/web/src/components/ui/input.tsx

24 lines
940 B
TypeScript
Raw Normal View History

import * as React from "react"
import { cn } from "@/lib/utils"
export interface InputProps
extends React.InputHTMLAttributes<HTMLInputElement> {}
const Input = React.forwardRef<HTMLInputElement, InputProps>(
({ className, type, ...props }, ref) => {
return (
<input
type={type}
className={cn(
"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",
className
)}
ref={ref}
{...props}
/>
)
}
)
Input.displayName = "Input"
export { Input }