UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

30 lines 1.06 kB
const React = require("react"); const { forwardRef } = require("react"); const EarthIcon = ({ title, titleId, ...props }, ref) => /*#__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: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("rect", { width: 18, height: 18, x: 3, y: 3, rx: 9 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M4 16c1.174-.406 5.874-2.098 6.5.5s4.24 4.135 4.5 4M13 3.5c.5 1 1.422 1.366 1.187 2.988-.039.268-.009.493.073.68.823 1.883 3.055 2.112 3.247 4.157.14 1.479.712 2.987 2.747 3.572M8.381 3.898c.074 1.008 2.981 3.302 1.27 3.184-.358-.024-.633.059-.844.217C7.164 8.53 6.82 10.283 5.17 11.507 4.57 11.952 3.987 12.702 3.5 14", opacity: 0.4 })); const ForwardRef = forwardRef(EarthIcon); module.exports = ForwardRef;