@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.19 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const HomeWifiIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M7.98 3.803c2.324-2.07 5.716-2.07 8.04 0l3.5 3.117c1.42 1.266 2.23 3.127 2.23 5.076v3.126c0 3.613-2.752 6.628-6.25 6.628h-7c-3.498 0-6.25-3.015-6.25-6.628v-3.126c0-1.949.81-3.81 2.23-5.076zm.73 9.875a.75.75 0 0 1 .052-1.06c.946-.854 2.073-1.294 3.219-1.262s2.247.534 3.143 1.44a.75.75 0 0 1-1.067 1.055c-.655-.662-1.399-.975-2.118-.995-.72-.02-1.48.25-2.17.875a.75.75 0 0 1-1.06-.053m3.3-5.425c1.992.056 3.927.926 5.524 2.543a.75.75 0 1 1-1.067 1.054c-1.356-1.372-2.934-2.054-4.498-2.097S8.79 10.3 7.36 11.595a.75.75 0 0 1-1.007-1.113c1.685-1.524 3.666-2.285 5.657-2.229",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(HomeWifiIcon);
module.exports = ForwardRef;