diff --git a/src/components/TextInput/index.js b/src/components/TextInput/index.js index 30a00e89b76d..bcdb7541abee 100644 --- a/src/components/TextInput/index.js +++ b/src/components/TextInput/index.js @@ -16,6 +16,8 @@ class TextInput extends React.Component { } render() { + const isLabeledMultiline = Boolean(this.props.label.length) && this.props.multiline; + return ( ); } diff --git a/src/styles/styles.js b/src/styles/styles.js index 9eab8076ae71..7e6bf1b03b69 100644 --- a/src/styles/styles.js +++ b/src/styles/styles.js @@ -698,6 +698,10 @@ const styles = { borderRadius: variables.componentBorderRadiusNormal, }, + textInputMultiline: { + scrollPadding: '23px 0 0 0', + }, + textInputAndIconContainer: { flex: 1, height: '100%',