UNPKG

@astraicons/react

Version:

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

33 lines 1.41 kB
const React = require("react"); const { forwardRef } = require("react"); const BrowserIcon = ({ 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("path", { strokeLinecap: "round", d: "M21.004 10.004v-2.5a4.5 4.5 0 0 0-4.498-4.5l-9-.003a4.5 4.5 0 0 0-4.501 4.5l-.002 9A4.5 4.5 0 0 0 7.502 21l2.5.001" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m6.006 5.991.01.01-.01.01-.01-.01zM8.016 5.991l.01.01-.01.01-.01-.01z", clipRule: "evenodd", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M11.919 18.195c.613-.215 3.422-1.376 3.748 0 .327 1.377 2.2 2.38 2.335 2.309m-1.39-9.218c.282.565.802.771.67 1.687-.2 1.382 1.652 1.752 1.93 3.12.142.7.524 1.35 1.495 1.63m-6.703-6.213c.118.636 2.154 2.272 1.04 2.079-1.522-.264-2.058 1.616-2.996 2.843-.19.248-.36.588-.492 1.05m4.447 3.521a5 5 0 1 1 .002-10 5 5 0 0 1-.002 10ZM10.006 6.002l8 .002", opacity: 0.4 })); const ForwardRef = forwardRef(BrowserIcon); module.exports = ForwardRef;