@zohodesk/components
Version:
Dot UI is a customizable React component library built to deliver a clean, accessible, and developer-friendly UI experience. It offers a growing set of reusable components designed to align with modern design systems and streamline application development
25 lines • 736 B
JavaScript
import PropTypes from 'prop-types';
export const CustomResponsiveSender_propTypes = {
children: PropTypes.any.isRequired,
domRefKey: PropTypes.string,
responsiveId: PropTypes.string
};
export const CustomResponsiveReceiver_propTypes = {
children: PropTypes.func,
domRefKey: PropTypes.string,
eleRef: PropTypes.func,
query: PropTypes.func,
responsiveId: PropTypes.string
};
export const ResponsiveSender_propTypes = {
children: PropTypes.any.isRequired,
domRefKey: PropTypes.string,
responsiveId: PropTypes.string
};
export const ResponsiveReceiver_propTypes = {
children: PropTypes.func,
domRefKey: PropTypes.string,
eleRef: PropTypes.func,
hiddenSizes: PropTypes.array,
responsiveId: PropTypes.string
};