summaryrefslogtreecommitdiff
path: root/src/components/ui/inputfield.tsx
diff options
context:
space:
mode:
authorl3wdfut4pwr l3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-01-31 20:33:22 +0200
committerl3wdfut4pwr l3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-01-31 20:33:22 +0200
commit9edce4dfa5f7c4efecd0f39fb4fd4a4c9863fe6e (patch)
treef975a2ba9c63d10d0c28ff206ed4a7b854f39a31 /src/components/ui/inputfield.tsx
parent2eaea7a0bc84feb894f37a84110595dff76a8202 (diff)
add register and reset dialogs
Diffstat (limited to 'src/components/ui/inputfield.tsx')
-rw-r--r--src/components/ui/inputfield.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/components/ui/inputfield.tsx b/src/components/ui/inputfield.tsx
new file mode 100644
index 0000000..40d5206
--- /dev/null
+++ b/src/components/ui/inputfield.tsx
@@ -0,0 +1,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>
+ );
+}