box-ui-elements
Version:
Box UI Elements
18 lines (17 loc) • 438 B
JavaScript
/**
*
* @file Open With fallback button
* @author Box
*/
import * as React from 'react';
import OpenWithButton from './OpenWithButton';
const OpenWithFallbackButton = ({
error
}) => /*#__PURE__*/React.createElement("div", {
className: "be bcow"
}, /*#__PURE__*/React.createElement(OpenWithButton, {
error: error,
isLoading: false
}));
export default OpenWithFallbackButton;
//# sourceMappingURL=OpenWithFallbackButton.js.map