@eccenca/gui-elements
Version:
GUI elements based on other libraries, usable in React application, written in Typescript.
17 lines • 1 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.ReactFlowMarkers = exports.MarkerArrowClosedInverse = void 0;
const react_1 = __importDefault(require("react"));
// FIXME: we need to check how these markers are used and if we can justify the namings
const MarkerArrowClosedInverse_1 = require("./MarkerArrowClosedInverse");
Object.defineProperty(exports, "MarkerArrowClosedInverse", { enumerable: true, get: function () { return MarkerArrowClosedInverse_1.MarkerArrowClosedInverse; } });
const ReactFlowMarkers = () => {
return (react_1.default.createElement("svg", null,
react_1.default.createElement("defs", null,
react_1.default.createElement(MarkerArrowClosedInverse_1.MarkerArrowClosedInverse, null))));
};
exports.ReactFlowMarkers = ReactFlowMarkers;
//# sourceMappingURL=ReactFlowMarkers.js.map