diff --git a/src/text-field.jsx b/src/text-field.jsx index 6f8f2ea1742adf..42decccd8c9fd5 100644 --- a/src/text-field.jsx +++ b/src/text-field.jsx @@ -331,7 +331,8 @@ const TextField = React.createClass({ inputProps.onChange = this._handleInputChange; } if (this.props.children) { - inputElement = React.cloneElement(this.props.children, {...inputProps, ...this.props.children.props}); + let childInputStyle = this.mergeStyles(inputStyle, this.props.children.style); + inputElement = React.cloneElement(this.props.children, {...inputProps, ...this.props.children.props, style:childInputStyle}); } else { inputElement = multiLine ? (