{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWifiNoSignal/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWifiNoSignal: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"wifi-no-signal, spot, signal, hot spot\"><path d=\"M15.6091 14.6086C15.3162 14.9015 14.8413 14.9015 14.5484 14.6086L12.0004 12.0605L9.45221 14.6087C9.15931 14.9016 8.68444 14.9016 8.39154 14.6087C8.09865 14.3158 8.09865 13.8409 8.39154 13.548L10.9397 10.9999L8.39156 8.45172C8.09867 8.15882 8.09867 7.68395 8.39156 7.39106C8.68445 7.09816 9.15933 7.09816 9.45222 7.39106L12.0004 9.93921L14.5484 7.39119C14.8413 7.0983 15.3162 7.0983 15.6091 7.39119C15.902 7.68408 15.902 8.15896 15.6091 8.45185L13.061 10.9999L15.6091 13.5479C15.902 13.8408 15.902 14.3157 15.6091 14.6086Z\" fill=\"currentColor\"/><path d=\"M12.0003 19.9999C12.5526 19.9999 13.0003 19.5522 13.0003 18.9999C13.0003 18.4476 12.5526 17.9999 12.0003 17.9999C11.448 17.9999 11.0003 18.4476 11.0003 18.9999C11.0003 19.5522 11.448 19.9999 12.0003 19.9999Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWifiNoSignal;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAy2B,EAAz2B,IAAqB,EAAO,UAAU,0CAAyC,gBAAC,OAAD,CAAM,EAAE,4gBAA4gB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,CAAI,GAGn2B",
  "debugId": "FFE0B54E713ED3A364756E2164756E21",
  "names": []
}