diff --git a/src/components/TextInput/BaseTextInput/index.native.tsx b/src/components/TextInput/BaseTextInput/index.native.tsx index 6db4e512f225..8d1800ce3b65 100644 --- a/src/components/TextInput/BaseTextInput/index.native.tsx +++ b/src/components/TextInput/BaseTextInput/index.native.tsx @@ -306,7 +306,7 @@ function BaseTextInput( /> ) : null} - + {!!iconLeft && ( ) : null} - + {!!iconLeft && ( paddingTop: 23, }, - textInputAndIconContainer: { - zIndex: -1, - flexDirection: 'row', + textInputAndIconContainer: (isMarkdownEnabled: boolean) => { + if (isMarkdownEnabled) { + return {zIndex: -1, flexDirection: 'row'}; + } + return { + flex: 1, + zIndex: -1, + flexDirection: 'row', + }; }, textInputDesktop: addOutlineWidth(theme, {}, 0),