2026-01-13 18:47:57 +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-16 00:24:24 +00:00
|
|
|
'flex h-10 w-full rounded-lg border border-white/10 bg-black/20 px-4 py-2.5 text-sm file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-kodo-secondary/50 focus-visible:outline-none focus-visible:border-kodo-cyan disabled:cursor-not-allowed disabled:opacity-50 transition-colors duration-200 text-white',
|
2026-01-13 18:47:57 +00:00
|
|
|
className,
|
2026-01-11 02:19:02 +00:00
|
|
|
)}
|
|
|
|
|
ref={ref}
|
|
|
|
|
{...props}
|
2026-01-07 09:31:02 +00:00
|
|
|
/>
|
2026-01-13 18:47:57 +00:00
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
Input.displayName = 'Input';
|
2026-01-07 09:31:02 +00:00
|
|
|
|
2026-01-13 18:47:57 +00:00
|
|
|
export { Input };
|