mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 19:00:13 +01:00
25 lines
782 B
TypeScript
25 lines
782 B
TypeScript
|
|
import * as React from "react"
|
||
|
|
|
||
|
|
import { cn } from "../../utils"
|
||
|
|
|
||
|
|
export interface InputProps
|
||
|
|
extends React.InputHTMLAttributes<HTMLInputElement> {}
|
||
|
|
|
||
|
|
const Input = React.forwardRef<HTMLInputElement, InputProps>(
|
||
|
|
({ className, ...props }, ref) => {
|
||
|
|
return (
|
||
|
|
<input
|
||
|
|
className={cn(
|
||
|
|
"flex h-10 w-full rounded-md border border-slate-300 bg-transparent py-2 px-3 text-sm placeholder:text-slate-400 focus:outline-none focus:ring-2 focus:ring-slate-400 focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 dark:border-slate-700 dark:text-slate-50 dark:focus:ring-slate-400 dark:focus:ring-offset-slate-900",
|
||
|
|
className
|
||
|
|
)}
|
||
|
|
ref={ref}
|
||
|
|
{...props}
|
||
|
|
/>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
)
|
||
|
|
Input.displayName = "Input"
|
||
|
|
|
||
|
|
export { Input }
|