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