UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.95 kB
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 StyledWifiRegular = ({ 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 16.567C10.8412 16.567 9.89997 17.542 9.89997 18.7007C9.89997 19.8595 10.8401 20.8007 11.9662 20.8007C13.0924 20.8007 14.1 19.8595 14.1 18.7007C14.1 17.542 13.1587 16.567 11.9662 16.567ZM23.7187 8.44823C20.7487 5.62148 16.4775 4.00073 12 4.00073C7.52247 4.00073 3.25197 5.62148 0.28021 8.44823C-0.0807276 8.79042 -0.0947901 9.35986 0.248567 9.71986C0.588392 10.0796 1.16019 10.0949 1.52019 9.7515C4.12872 7.24073 7.97997 5.80073 12 5.80073C16.02 5.80073 19.8375 7.24111 22.4812 9.75323C22.6537 9.91823 22.8787 10.0007 23.0662 10.0007C23.3041 10.0007 23.5421 9.90698 23.718 9.72064C24.0937 9.35948 24.0825 8.79323 23.7187 8.44823ZM12 10.597C9.12635 10.597 6.45372 11.647 4.47747 13.5501C4.11747 13.897 4.10622 14.467 4.45122 14.8232C4.79694 15.1842 5.3666 15.1924 5.72397 14.849C7.36497 13.2707 9.59247 12.4007 12 12.4007C14.4075 12.4007 16.635 13.2704 18.2775 14.8499C18.45 15.0182 18.6412 15.1007 18.8662 15.1007C19.1018 15.1007 19.3383 15.0081 19.5153 14.8242C19.8599 14.4668 19.8482 13.8972 19.4896 13.5514C17.5462 11.647 14.8725 10.597 12 10.597Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledWifiRegular); const WifiRegular = /*#__PURE__*/memo(ForwardRef); export default WifiRegular;