@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.09 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",
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", {
d: "M3 11.996c0-1.745.725-3.4 1.979-4.516l3.5-3.117c2.04-1.817 5.002-1.817 7.042 0l3.5 3.117C20.275 8.597 21 10.251 21 11.996v3.125C21 18.368 18.538 21 15.5 21h-7C5.462 21 3 18.368 3 15.121z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M11.943 15.26a.446.446 0 0 0-.447.448.448.448 0 1 0 .895.001.45.45 0 0 0-.448-.45M14.59 13.324c-1.55-1.57-3.689-1.63-5.324-.15M17 11.322c-2.953-2.988-7.027-3.102-10.143-.284",
opacity: 0.4
}));
const ForwardRef = forwardRef(HomeWifiIcon);
module.exports = ForwardRef;