chayns-components
Version:
A set of beautiful React components for developing chayns® applications.
28 lines (27 loc) • 749 B
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
import SmallWaitCursor from '../../react-chayns-smallwaitcursor/component/SmallWaitCursor';
const WaitCursor = _ref => {
let {
style
} = _ref;
return /*#__PURE__*/React.createElement("div", {
className: "cc__person-finder__wait-cursor",
style: {
textAlign: 'center',
padding: '5px 5px 0px 5px',
...style
}
}, /*#__PURE__*/React.createElement(SmallWaitCursor, {
showBackground: false,
show: true,
inline: true
}));
};
WaitCursor.propTypes = {
// eslint-disable-next-line react/forbid-prop-types
style: PropTypes.object
};
WaitCursor.displayName = 'WaitCursor';
export default WaitCursor;
//# sourceMappingURL=WaitCursor.js.map