Added positive vaiant in button

This commit is contained in:
unknown 2021-09-08 19:33:29 +05:30
parent cdf421f0f1
commit b9b2f9f2c3
2 changed files with 9 additions and 1 deletions

View file

@ -40,7 +40,7 @@ Button.defaultProps = {
Button.propTypes = {
id: PropTypes.string,
className: PropTypes.string,
variant: PropTypes.oneOf(['surface', 'primary', 'caution', 'danger']),
variant: PropTypes.oneOf(['surface', 'primary', 'positive', 'caution', 'danger']),
iconSrc: PropTypes.string,
type: PropTypes.oneOf(['button', 'submit']),
onClick: PropTypes.func,