From 711536975cb64a9b7b91dcdb802d578125480103 Mon Sep 17 00:00:00 2001 From: rstubryan Date: Thu, 29 Jan 2026 10:58:49 +0700 Subject: [PATCH] refactor(FE): Apply innerProps and className to CustomControl --- src/components/input/SelectInput.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/input/SelectInput.tsx b/src/components/input/SelectInput.tsx index 2a3ff98c..fc7926cc 100644 --- a/src/components/input/SelectInput.tsx +++ b/src/components/input/SelectInput.tsx @@ -89,7 +89,7 @@ const CustomControl = < >( props: ControlProps ) => { - const { children } = props; + const { children, innerProps, className } = props; const customProps = props.selectProps as unknown as { shouldShowAdornment?: boolean; @@ -101,7 +101,10 @@ const CustomControl = < return ( -
+
{shouldShowAdornment && startAdornment} {children}