blob: 66cd1108b9817a6099b345c511e4cc3c782a9f25 (
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
|
import * as React from "react";
import { cn } from "@/lib/utils";
export interface InputProps
extends React.InputHTMLAttributes<HTMLInputElement> {
startIcon?: React.ReactNode;
endIcon?: React.ReactNode;
}
const Input = React.forwardRef<HTMLInputElement, InputProps>(
({ className, type, startIcon, endIcon, ...props }, ref) => {
return (
<div className="relative w-full">
{startIcon && (
<div className="absolute left-2 top-1/2 -translate-y-1/2 transform">
{startIcon}
</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}
</div>
)}
</div>
);
},
);
Input.displayName = "Input";
export { Input };
|