12345678910111213141516171819202122232425 |
- 'use strict';
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2018
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define(['react', 'ca-ui-toolkit', 'prop-types'], function (React, UIToolkit, PropTypes) {
- var CenterLoadingSpinner = function CenterLoadingSpinner(props) {
- return React.createElement(
- 'div',
- { className: 'loadingBlocker blockerCenterContents' },
- React.createElement(UIToolkit.ProgressIndicator, { size: props.size, variant: props.variant })
- );
- };
- CenterLoadingSpinner.propTypes = {
- size: PropTypes.string.isRequiried,
- variant: PropTypes.string.isRequiried
- };
- return CenterLoadingSpinner;
- });
- //# sourceMappingURL=CenterLoadingSpinner.js.map
|