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 | 1x | import PropTypes from 'prop-types';
export const propTypes = {
customTextClass: PropTypes.string,
initial: PropTypes.string,
isTeam: PropTypes.bool,
name: PropTypes.string,
needTitle: PropTypes.bool,
palette: PropTypes.oneOf(['primary', 'secondary', 'info', 'default']),
size: PropTypes.string,
src: PropTypes.string,
dataSelectorId: PropTypes.string,
teamClassName: PropTypes.string,
teamName: PropTypes.string,
textPalette: PropTypes.oneOf(['white', 'black']),
title: PropTypes.string,
borderOnActive: PropTypes.bool,
teamBorderActive:PropTypes.bool,
customProps: PropTypes.shape({
AvatarWithTeamProps: PropTypes.object,
Avatar1Props: PropTypes.object,
AvatarTeam1Props: PropTypes.object,
Avatar2Props: PropTypes.object,
AvatarTeam2Props: PropTypes.object
})
};
|