46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import * as React from "react";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
icon?: React.ReactNode;
|
|
inputClassName?: string;
|
|
}
|
|
|
|
const Input = React.forwardRef<HTMLInputElement, InputProps>(
|
|
({ className, inputClassName, icon, type, placeholder, ...props }, ref) => {
|
|
return (
|
|
<label className={cn("relative block h-fit w-full text-sm", icon ? className : "")}>
|
|
{icon && (
|
|
<div className="pointer-events-none absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 transform text-muted-foreground">
|
|
{icon}
|
|
</div>
|
|
)}
|
|
<input
|
|
autoComplete="off"
|
|
type={type}
|
|
placeholder={placeholder}
|
|
className={cn(
|
|
"primary-input !placeholder-transparent",
|
|
icon && "pl-9",
|
|
icon ? inputClassName : className,
|
|
)}
|
|
ref={ref}
|
|
{...props}
|
|
/>
|
|
<span
|
|
className={cn(
|
|
"pointer-events-none absolute top-1/2 -translate-y-1/2 pl-px text-placeholder-foreground font-mono",
|
|
icon ? "left-9" : "left-3",
|
|
props.value && "hidden",
|
|
)}
|
|
>
|
|
{placeholder}
|
|
</span>
|
|
</label>
|
|
);
|
|
},
|
|
);
|
|
|
|
Input.displayName = "Input";
|
|
|
|
export { Input };
|