Skip to content

Commit

Permalink
support for search HTML5 input type (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdmg94 authored and couds committed Jun 21, 2018
1 parent c055946 commit 3f4ca48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/form/components/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -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', 'number']),
type: PropTypes.oneOf(['text', 'email', 'tel', 'password', 'number', 'search']),
size: PropTypes.oneOf(['small', 'medium', 'large']),
color: PropTypes.oneOf(colors),
readOnly: PropTypes.bool,
Expand Down

0 comments on commit 3f4ca48

Please sign in to comment.