@zohodesk/components
Version:
In this Package, we Provide Some Basic Components to Build Web App
17 lines • 557 B
JavaScript
import PropTypes from 'prop-types';
export const propTypes = {
children: PropTypes.oneOfType([PropTypes.element, PropTypes.arrayOf(PropTypes.element)]),
dataId: PropTypes.string,
dataSelectorId: PropTypes.string,
eleRef: PropTypes.func,
tagName: PropTypes.string,
className: PropTypes.string,
needTooltip: PropTypes.bool,
tooltipClass: PropTypes.string,
tooltipParentClass: PropTypes.string,
customProps: PropTypes.shape({
ContainerProps: PropTypes.object,
TooltipProps: PropTypes.object,
ExtraProps: PropTypes.object
})
};