metadata-based-explorer1
Version:
Box UI Elements
16 lines (14 loc) • 455 B
JavaScript
/**
*
* @file Icon
* @author Box
*/
import React from 'react';
import LoadingIndicator from '../../components/loading-indicator/LoadingIndicator';
import IconClose from '../../icons/general/IconClose';
var IconInProgress = function IconInProgress() {
return React.createElement("div", {
className: "be-icon-in-progress"
}, React.createElement(IconClose, null), React.createElement(LoadingIndicator, null));
};
export default IconInProgress;