@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
17 lines • 528 B
JavaScript
import PropTypes from 'prop-types';
export default {
dataId: PropTypes.string,
isRotated: PropTypes.bool,
customClass: PropTypes.shape({
iconClass: PropTypes.string,
containerClass: PropTypes.string
}),
customProps: PropTypes.object,
tagAttributes: PropTypes.object,
a11yAttributes: PropTypes.object,
renderCustomToggleIndicator: PropTypes.oneOfType([PropTypes.node, PropTypes.func]),
isDisabled: PropTypes.bool,
isReadOnly: PropTypes.bool,
isActive: PropTypes.bool,
iconSize: PropTypes.string
};