UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 787 B
const React = require("react"); function Globe02Icon({ 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: "M2.661 18.34l4.594-4.595M18.218 2.783A9.5 9.5 0 114.783 16.218M17 22H7m5 0v-3m5.5-9.5a6 6 0 11-12 0 6 6 0 0112 0z" })); } const ForwardRef = React.forwardRef(Globe02Icon); module.exports = ForwardRef;