@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
26 lines • 808 B
JavaScript
import PropTypes from 'prop-types';
export const propTypes = {
className: PropTypes.string,
customTextClass: PropTypes.string,
dataId: PropTypes.string,
initial: PropTypes.string,
name: PropTypes.string,
needBorder: PropTypes.bool,
needTitle: PropTypes.bool,
onClick: PropTypes.func,
palette: PropTypes.oneOf(['primary', 'secondary', 'info', 'default']),
shape: PropTypes.string,
size: PropTypes.string,
src: PropTypes.string,
state: PropTypes.string,
needDefaultBorder: PropTypes.bool,
needBorder: PropTypes.bool,
statusTitle: PropTypes.string,
textPalette: PropTypes.oneOf(['white', 'black']),
title: PropTypes.string,
dataSelectorId: PropTypes.string,
customProps: PropTypes.shape({
AvatarStatusProps: PropTypes.object,
AvatarProps: PropTypes.object
})
};