UNPKG

@eccenca/gui-elements

Version:

GUI elements based on other libraries, usable in React application, written in Typescript.

11 lines 840 B
import React from "react"; /** * @deprecated (v26) use `<ReactFlowMarkers />` */ export var EdgeDefs = React.memo(function () { return (React.createElement("svg", { style: { position: "absolute", top: 0, left: 0 } }, React.createElement("defs", null, React.createElement("marker", { id: "arrow-closed", viewBox: "-10 -10 20 20", markerWidth: "10", markerHeight: "10", refX: "0", refY: "0", orient: "auto" }, React.createElement("path", { d: "M-4,-4 L4,0 L-4,4 Z", fill: "currentColor" })), React.createElement("marker", { id: "arrow-closed-reverse", viewBox: "-10 -10 20 20", markerWidth: "10", markerHeight: "10", refX: "0", refY: "0", orient: "auto-start-reverse" }, React.createElement("path", { d: "M-4,-4 L4,0 L-4,4 Z", fill: "currentColor" }))))); }); //# sourceMappingURL=EdgeDefs.js.map