@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
17 lines • 474 B
JavaScript
import PropTypes from 'prop-types';
export const propTypes = {
initial: PropTypes.string,
isIdle: PropTypes.bool,
isLeft: PropTypes.bool,
name: PropTypes.string.isRequired,
needCreateChat: PropTypes.bool,
onClick: PropTypes.func,
size: PropTypes.string,
src: PropTypes.string,
title: PropTypes.string,
dataSelectorId: PropTypes.string,
customProps: PropTypes.shape({
AvatarCollisionProps: PropTypes.object,
AvatarProps: PropTypes.object
})
};