UNPKG

@jinshuju/field-icons-react

Version:

First, install `@jinshuju/field-icons-react` from npm:

25 lines 757 B
import * as React from "react"; function FieldIconMapNavigation({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "none", "data-slot": "icon", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.8, d: "M15 6 9 3 3 6v15l6-3M9 3v15m0 0 6 3 6-3V3l-6 3m0 0v15" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconMapNavigation); export default ForwardRef;