Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 11x | import PropTypes from 'prop-types';
export const propTypes = {
children: PropTypes.node,
className: PropTypes.string,
dataId: PropTypes.string,
dataSelectorId: PropTypes.string,
eleRef: PropTypes.func,
hoverType: PropTypes.oneOf(['default', 'border', 'bg']),
iconClass: PropTypes.string,
iconName: PropTypes.string,
iconSize: PropTypes.string,
size: PropTypes.oneOf(['xsmall', 'small', 'medium', 'large', 'xlarge']),
isActive: PropTypes.bool,
isBold: PropTypes.bool,
isDisabled: PropTypes.bool,
isNeedEffect: PropTypes.bool,
onClick: PropTypes.func,
onMouseDown: PropTypes.func,
onMouseOver: PropTypes.func,
palette: PropTypes.oneOf(['primary', 'primaryFilled', 'default']),
title: PropTypes.string,
tourId: PropTypes.string,
isNeedEffect: PropTypes.bool,
needButtonTag: PropTypes.bool,
a11y: PropTypes.shape({
ariaHaspopup: PropTypes.bool,
ariaExpanded: PropTypes.bool,
ariaLabel: PropTypes.string,
ariaControls: PropTypes.string,
ariaLabelledby: PropTypes.string
}),
dataIsHtml: PropTypes.bool,
customProps: PropTypes.object
};
|