blob: 40d5206f51c87f920c579c07759bb917909997ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { Input } from '@/components/ui/input';
interface InputFIeldProps {
placeholder: string;
}
export function InputField({ placeholder }: InputFIeldProps) {
return (
<div className="rounded-[20px] border-violet border-[2px] h-[39px] flex items-center justify-between py-[10px] px-[20px]">
<Input
placeholder={placeholder}
className="w-full flex text-white placeholder:text-light-violet text-sm min-w-[270px] h-[19px]"
/>
</div>
);
}
|