UNPKG

@jinshuju/field-icons-react

Version:

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

28 lines 1.48 kB
const React = require("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: "currentColor", "data-slot": "icon", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("g", { clipPath: "url(#a)" }, /*#__PURE__*/React.createElement("path", { d: "M7.905 3.232c.5-.292 1.106-.31 1.622-.046l5.605 2.86a.24.24 0 0 0 .232-.006l4.032-2.165c1.167-.68 2.604.2 2.604 1.595v10.97c0 .662-.343 1.272-.896 1.595l-5.009 2.733c-.5.292-1.106.31-1.622.046l-5.605-2.86a.24.24 0 0 0-.232.006l-4.032 2.207c-1.167.68-2.604-.2-2.604-1.595V7.602c0-.662.343-1.272.896-1.595l5.009-2.775Zm1.845 1.81v11.619l4.5 2.297V7.339l-4.5-2.297ZM8.25 16.44V4.824l-4.622 2.55a.263.263 0 0 0-.128.228v10.97c0 .2.205.325.372.228l4.033-2.206c.11-.065.226-.116.345-.154Zm12.122.228a.263.263 0 0 0 .128-.228V5.47c0-.2-.205-.325-.372-.228l-4.033 2.164a1.71 1.71 0 0 1-.345.154v11.616l4.622-2.508Z" })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", { id: "a" }, /*#__PURE__*/React.createElement("rect", { width: 24, height: 24 })))); } const ForwardRef = /*#__PURE__*/ React.forwardRef(FieldIconMapNavigation); module.exports = ForwardRef;