UNPKG

@zohodesk/dot

Version:

In this Library, we Provide Some Basic Components to Build Your Application

37 lines 1.21 kB
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 }) };