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 | 1x | import PropTypes from 'prop-types';
export const propTypes = {
className: PropTypes.string,
customTextClass: PropTypes.string,
dataId: PropTypes.string,
initial: PropTypes.string,
name: PropTypes.string,
needBorder: PropTypes.bool,
needTitle: PropTypes.bool,
onClick: PropTypes.func,
palette: PropTypes.oneOf(['primary', 'secondary', 'info', 'default']),
shape: PropTypes.string,
size: PropTypes.string,
src: PropTypes.string,
state: PropTypes.string,
needDefaultBorder: PropTypes.bool,
needBorder: PropTypes.bool,
statusTitle: PropTypes.string,
textPalette: PropTypes.oneOf(['white', 'black']),
title: PropTypes.string,
dataSelectorId: PropTypes.string,
customProps: PropTypes.shape({
AvatarStatusProps: PropTypes.object,
AvatarProps: PropTypes.object
})
};
|