UNPKG

@pinuts/bsr-uikit-relaunch

Version:

BSR UI-KIT Relaunch

26 lines 981 B
export default SmallModal; declare function SmallModal({ show, onClose, children, id, className, modalLabel, "aria-labelledby": ariaLabelledBy, "aria-describedby": ariaDescribedBy, }: { show: any; onClose: any; children: any; id: any; className: any; modalLabel: any; "aria-labelledby": any; "aria-describedby": any; }): React.JSX.Element; declare namespace SmallModal { let propTypes: { show: PropTypes.Validator<boolean>; onClose: PropTypes.Validator<(...args: any[]) => any>; children: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>; id: PropTypes.Requireable<string>; className: PropTypes.Requireable<string>; modalLabel: PropTypes.Requireable<string>; 'aria-labelledby': PropTypes.Requireable<string>; 'aria-describedby': PropTypes.Requireable<string>; }; } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=SmallModal.d.ts.map