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 | 1x | import PropTypes from 'prop-types'; export const propTypes = { dataId: PropTypes.string, dataSelectorId: PropTypes.string, isFilled: PropTypes.bool, name: PropTypes.string.isRequired, needTitle: PropTypes.bool, onClick: PropTypes.func, palette: PropTypes.oneOf(['primary', 'secondary', 'info']), size: PropTypes.oneOf(['xxsmall', 'small', 'xsmall', 'medium', 'xmedium', 'large', 'xlarge']), src: PropTypes.string, textPalette: PropTypes.oneOf(['white', 'black']), needBorder: PropTypes.bool, title: PropTypes.string, customClass: PropTypes.shape({ customAvatar: PropTypes.string, customAvatarTeam: PropTypes.string }), borderOnActive: PropTypes.bool, borderOnHover: PropTypes.bool, needInnerBorder: PropTypes.bool, needDefaultBorder: PropTypes.bool, customProps: PropTypes.shape({ AvatarTeamProps: PropTypes.object, AvatarProps: PropTypes.object }) }; |