@orfeas126/box-ui-elements
Version:
Box UI Elements
30 lines (29 loc) • 1.53 kB
JavaScript
const _excluded = ["action", "children", "fileId", "isCurrent"];
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var s = Object.getOwnPropertySymbols(e); for (r = 0; r < s.length; r++) o = s[r], t.includes(o) || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) continue; t[n] = r[n]; } return t; }
/**
*
* @file Versions Item Action component
* @author Box
*/
import * as React from 'react';
import { MenuItem } from '../../../components/menu';
import './VersionsItemAction.scss';
const VersionsItemAction = _ref => {
let {
action,
children,
fileId,
isCurrent
} = _ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement(MenuItem, _extends({
className: "bcs-VersionsItemAction",
"data-resin-iscurrent": isCurrent,
"data-resin-itemid": fileId,
"data-resin-target": action
}, rest), children);
};
export default VersionsItemAction;
//# sourceMappingURL=VersionsItemAction.js.map