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 37 38 39 | 2x | import PropTypes from 'prop-types';
export const propTypes = {
action: PropTypes.string,
channel: PropTypes.string,
channelTitle: PropTypes.oneOfType([PropTypes.string, PropTypes.bool]),
className: PropTypes.string,
customTextClass: PropTypes.string,
dataId: PropTypes.string,
frontClass: PropTypes.string,
icon: PropTypes.string,
iconClass: PropTypes.string,
iconColor: PropTypes.string,
iconSize: PropTypes.string,
id: PropTypes.string.isRequired,
initial: PropTypes.string,
isChecked: PropTypes.bool,
isFilledCheckbox: PropTypes.bool,
isPaidUser: PropTypes.bool,
isPortalUser: PropTypes.bool,
name: PropTypes.string,
needTitle: PropTypes.bool,
noNeedFlip: PropTypes.bool,
onChange: PropTypes.func,
palette: PropTypes.oneOf(['primary', 'secondary', 'info', 'default']),
size: PropTypes.string,
src: PropTypes.string,
textPalette: PropTypes.oneOf(['white', 'black']),
ticList: PropTypes.string,
ticListContainer: PropTypes.string,
tourId: PropTypes.string,
customProps: PropTypes.shape({
CheckBoxProps: PropTypes.object,
ChannelIconProps: PropTypes.object,
AvatarIconProps: PropTypes.object,
AvatarUserProps: PropTypes.object
})
};
|