@zohodesk/components
Version:
In this Package, we Provide Some Basic Components to Build Web App
12 lines • 468 B
JavaScript
import PropTypes from 'prop-types';
export const propTypes = {
children: PropTypes.node,
hoverType: PropTypes.oneOf(['default', 'border', 'bg']),
isActive: PropTypes.bool,
isDisabled: PropTypes.bool,
isNeedEffect: PropTypes.bool,
needBorder: PropTypes.bool,
palette: PropTypes.oneOf(['default', 'primary', 'primaryLight', 'primaryFilled', 'primaryDark', 'green', 'danger']),
cssClassPropOfChild: PropTypes.string,
isCopyTextEnabled: PropTypes.bool
};