diff --git a/src/components/TextInput/baseTextInputPropTypes.js b/src/components/TextInput/baseTextInputPropTypes.js index aa4c9156e4ab..cdb3a2cb1056 100644 --- a/src/components/TextInput/baseTextInputPropTypes.js +++ b/src/components/TextInput/baseTextInputPropTypes.js @@ -45,12 +45,6 @@ const propTypes = { /** Saves a draft of the input value when used in a form */ shouldSaveDraft: PropTypes.bool, - - /** Character limit for the input */ - maxLength: PropTypes.number, - - /** Hint microcopy to be displayed under the input */ - hint: PropTypes.string, }; const defaultProps = { @@ -72,8 +66,6 @@ const defaultProps = { defaultValue: undefined, forceActiveLabel: false, shouldSaveDraft: false, - maxLength: undefined, - hint: '', }; export {propTypes, defaultProps};