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
46
47
48
49
50
51
|
import { cn } from "@lib/utils";
import { Input } from "@ui/components/input";
import { Label1Regular } from "@ui/text/label/label-1-regular";
interface LabeledInputProps extends React.ComponentProps<"div"> {
label?: string;
inputType: string;
inputPlaceholder: string;
error?: string | null;
inputProps?: React.ComponentProps<typeof Input>;
}
export function LabeledInput({
inputType,
inputPlaceholder,
className,
error,
inputProps,
label,
...props
}: LabeledInputProps) {
return (
<div className={cn("flex flex-col gap-2", className)} {...props}>
{label && (
<Label1Regular className="text-foreground">{label}</Label1Regular>
)}
<Input
className={cn(
"w-full leading-[1.375rem] tracking-[-0.4px] rounded-xl p-4 placeholder:text-muted-foreground/50 text-foreground disabled:cursor-not-allowed disabled:opacity-50",
inputProps?.className,
)}
style={{
height: "44px",
borderRadius: "12px",
border: "1px solid rgba(82, 89, 102, 0.20)",
background: "#070E1B",
boxShadow:
"0 1px 2px 0 rgba(0, 43, 87, 0.10), 0 0 0 1px rgba(43, 49, 67, 0.08) inset, 0 1px 1px 0 rgba(0, 0, 0, 0.08) inset, 0 2px 4px 0 rgba(0, 0, 0, 0.02) inset",
}}
placeholder={inputPlaceholder}
type={inputType}
{...inputProps}
/>
{error && (
<p className="text-sm text-red-500" role="alert">
{error}
</p>
)}
</div>
);
}
|