Skip to content

Commit

Permalink
fix(CustomInput): allow any node for label (#1095)
Browse files Browse the repository at this point in the history
  • Loading branch information
iKonrad authored and TheSharpieOne committed Jul 17, 2018
1 parent 0005b92 commit c1374b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CustomInput.js
Expand Up @@ -7,7 +7,7 @@ const propTypes = {
className: PropTypes.string,
id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
type: PropTypes.string.isRequired,
label: PropTypes.string,
label: PropTypes.node,
inline: PropTypes.bool,
valid: PropTypes.bool,
invalid: PropTypes.bool,
Expand Down

0 comments on commit c1374b4

Please sign in to comment.