From db1e224c3b5398a3d60e54260f50297c4e0c8e09 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Sat, 24 Jan 2026 11:20:11 +0700 Subject: [PATCH] chore: adjust TextInput styling --- src/components/input/TextInput.tsx | 36 +++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/src/components/input/TextInput.tsx b/src/components/input/TextInput.tsx index 5936c85a..62582781 100644 --- a/src/components/input/TextInput.tsx +++ b/src/components/input/TextInput.tsx @@ -21,6 +21,9 @@ export interface TextInputProps { label?: string; inputWrapper?: string; input?: string; + inputPrefix?: string; + inputSuffix?: string; + inputPrefixSuffixWrapper?: string; }; isError?: boolean; isValid?: boolean; @@ -62,7 +65,7 @@ const TextInput = ({ return (
@@ -70,7 +73,7 @@ const TextInput = ({