UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 814 B
const React = require("react"); function CompassIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 4a2.5 2.5 0 100 5 2.5 2.5 0 000-5zm0 0V2m9 12.938A11.971 11.971 0 0112 19a11.971 11.971 0 01-9-4.063m7.745-6.275L3 22M13.255 8.662L21 22" })); } const ForwardRef = React.forwardRef(CompassIcon); module.exports = ForwardRef;