From fe172fa97f367400aeaab9b3e03e985eabf7b498 Mon Sep 17 00:00:00 2001 From: Connie Liu <139280159+coliu-akamai@users.noreply.github.com> Date: Tue, 12 Nov 2024 12:40:15 -0500 Subject: [PATCH] fix: sx styling for Textfield component (#11246) * spread containerProps sx * spread props.sx as well whoops --- packages/manager/src/components/TextField.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/manager/src/components/TextField.tsx b/packages/manager/src/components/TextField.tsx index da82c2b3bbc..41119007223 100644 --- a/packages/manager/src/components/TextField.tsx +++ b/packages/manager/src/components/TextField.tsx @@ -266,6 +266,7 @@ export const TextField = (props: TextFieldProps) => { display: 'flex', flexWrap: 'wrap', }), + ...containerProps?.sx, }} > { ...(Boolean(tooltipText) && { width: '415px', }), + ...props.sx, }} className={className} error={!!error || !!errorText}