@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
37 lines • 1.44 kB
JavaScript
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"
}), /*#__PURE__*/React.createElement("rect", {
width: 10,
height: 10,
x: 11.004,
y: 11.002,
rx: 5
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M11.92 18.195c.613-.215 3.421-1.376 3.748 0 .327 1.377 2.199 2.38 2.335 2.309M16.611 11.286c.283.565.803.771.67 1.687-.2 1.382 1.653 1.752 1.931 3.12.142.7.524 1.35 1.495 1.63M14.003 11.51c.118.636 2.154 2.272 1.04 2.079-1.522-.264-2.058 1.616-2.996 2.843-.19.249-.36.588-.492 1.05M10.006 6.002l8 .002"
}));
const ForwardRef = forwardRef(BrowserIcon);
module.exports = ForwardRef;