diff --git a/src/components/form/components/input.js b/src/components/form/components/input.js index d5578ae0..fc61178c 100644 --- a/src/components/form/components/input.js +++ b/src/components/form/components/input.js @@ -10,7 +10,7 @@ export default class Input extends PureComponent { static propTypes = { className: PropTypes.string, style: PropTypes.shape({}), - type: PropTypes.oneOf(['text', 'email', 'tel', 'password']), + type: PropTypes.oneOf(['text', 'email', 'tel', 'password', 'number']), size: PropTypes.oneOf(['small', 'medium', 'large']), color: PropTypes.oneOf(colors), readOnly: PropTypes.bool,