blob: 09f9def9dc818206dd07408a2c7421d3fbbfdf4e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
import * as React from "react";
import { cn } from "@/lib/utils";
import { LucideIcon } from "lucide-react";
export interface InputProps
extends React.InputHTMLAttributes<HTMLInputElement> {
startIcon?: LucideIcon;
endIcon?: LucideIcon;
}
const Input = React.forwardRef<HTMLInputElement, InputProps>(
({ className, type, startIcon, endIcon, ...props }, ref) => {
const StartIcon = startIcon;
const EndIcon = endIcon;
return (
<div className="relative w-full">
{StartIcon && (
<div className="absolute left-2 top-1/2 -translate-y-1/2 transform">
<StartIcon size={18} className="text-muted-foreground" />
</div>
)}
<input
type={type}
className={cn(
"flex h-10 w-full rounded-md border border-input bg-background px-4 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-0 disabled:cursor-not-allowed disabled:opacity-50",
startIcon ? "pl-8" : "",
endIcon ? "pr-8" : "",
className,
)}
ref={ref}
{...props}
/>
{EndIcon && (
<div className="absolute right-3 top-1/2 -translate-y-1/2 transform">
<EndIcon className="text-muted-foreground" size={18} />
</div>
)}
</div>
);
},
);
Input.displayName = "Input";
export { Input };
|