Web: Components: CodeInput - added property description

This commit is contained in:
DmitrySychugov 2023-04-14 19:43:56 +05:00
parent a2684b2f70
commit 483b05b304

View File

@ -98,8 +98,11 @@ CodeInput.propTypes = {
onSubmit: PropTypes.func.isRequired, onSubmit: PropTypes.func.isRequired,
handleChange: PropTypes.func, handleChange: PropTypes.func,
isDisabled: PropTypes.bool, isDisabled: PropTypes.bool,
/** Accepts class */
className: PropTypes.string, className: PropTypes.string,
/** Accepts id */
id: PropTypes.string, id: PropTypes.string,
/** Accepts css style */
style: PropTypes.oneOfType([PropTypes.object, PropTypes.array]), style: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
}; };