UNPKG

@astraicons/react

Version:

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

35 lines 1.5 kB
const React = require("react"); const { forwardRef } = require("react"); const BrowserAdIcon = ({ 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: "m16.506 3.003-9-.002a4.5 4.5 0 0 0-4.501 4.5l-.002 9A4.5 4.5 0 0 0 7.502 21l9 .002a4.5 4.5 0 0 0 4.5-4.499l.003-9a4.5 4.5 0 0 0-4.5-4.5Z" }), /*#__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" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "m10.006 6.002 8 .002" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m4.996 16 1.667-5 1.666 5M5.553 14.611h2.222M10.129 16v-5h2.222c.614 0 1.111.498 1.111 1.111v2.778c0 .614-.497 1.111-1.11 1.111zM18.597 12.111c0-.614-.498-1.111-1.111-1.111h-1.111c-.614 0-1.111.498-1.111 1.111v.24c0 .512.349.957.846 1.079l1.65.406A1.098 1.098 0 0 1 17.5 16h-1.124a1.11 1.11 0 0 1-1.111-1.111v-.278" })); const ForwardRef = forwardRef(BrowserAdIcon); module.exports = ForwardRef;