@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.96 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledWifiSolid = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M11.9662 15.967C10.6406 15.967 9.56622 17.0417 9.56622 18.3674C9.56622 19.693 10.641 20.7677 11.9662 20.7677C13.2915 20.7677 14.3662 19.693 14.3662 18.3674C14.3662 17.0417 13.3237 15.967 11.9662 15.967ZM12 9.96698C9.36559 9.96698 6.82872 10.927 4.85622 12.6681C4.36122 13.1395 4.31247 13.897 4.75122 14.3957C5.19372 14.8907 5.95122 14.9395 6.44622 14.5007C7.97997 13.147 9.95247 12.4007 12 12.4007C14.0475 12.4007 16.0237 13.1462 17.5537 14.5007C17.7825 14.7032 18.0675 14.8007 18.3487 14.8007C18.6803 14.8007 19.011 14.6636 19.2487 14.3954C19.6875 13.897 19.6424 13.1395 19.1437 12.7007C17.1712 10.9607 14.6362 9.96698 12 9.96698ZM23.6324 8.67698C20.4862 5.66123 16.3575 4.00073 12 4.00073C7.64247 4.00073 3.51335 5.66123 0.369131 8.67698C-0.108993 9.13636 -0.124368 9.89573 0.333975 10.3739C0.792224 10.8531 1.5516 10.8659 2.03085 10.409C4.69122 7.79198 8.26497 6.40073 12 6.40073C15.735 6.40073 19.2412 7.82461 21.9674 10.4095C22.2037 10.6307 22.4999 10.7432 22.7999 10.7432C23.1152 10.7432 23.4303 10.6202 23.6658 10.3741C24.1237 9.89573 24.1087 9.10448 23.6324 8.67698Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledWifiSolid);
const WifiSolid = /*#__PURE__*/memo(ForwardRef);
export default WifiSolid;