{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWifiSquare/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\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    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWifiSquare: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconWifiSquare\"><Path d=\"M12 11.75L12 11.25L12 11.75ZM20.5 3.5H21V3H20.5V3.5ZM20.5 20.5V21H21V20.5H20.5ZM3.5 20.5H3V21H3.5V20.5ZM3.5 3.5V3H3V3.5H3.5ZM17.1826 8.7701C15.6693 7.58895 13.8332 7 12 7V8C13.6203 8 15.2377 8.52055 16.5674 9.5584L17.1826 8.7701ZM12 7C10.1668 7 8.33065 7.58895 6.81736 8.7701L7.43264 9.5584C8.76235 8.52055 10.3797 8 12 8V7ZM9.46446 13.114C10.2016 12.5391 11.0992 12.25 12 12.25L12 11.25C10.8866 11.25 9.77027 11.6074 8.8495 12.3255L9.46446 13.114ZM12 12.25C12.9009 12.25 13.7988 12.5391 14.5366 13.1141L15.1513 12.3254C14.2301 11.6074 13.1135 11.25 12 11.25L12 12.25ZM20 3.5V20.5H21V3.5H20ZM20.5 20H3.5V21H20.5V20ZM4 20.5V3.5H3V20.5H4ZM3.5 4H20.5V3H3.5V4Z\" fill=\"currentColor\"/><Path d=\"M12 15.625C12.3452 15.625 12.625 15.9048 12.625 16.25C12.625 16.5952 12.3452 16.875 12 16.875C11.6548 16.875 11.375 16.5952 11.375 16.25C11.375 15.9048 11.6548 15.625 12 15.625Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/></CentralIconBase>;\n});\n\nexport default IconWifiSquare;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAkgC,EAAlgC,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,mpBAAmpB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oLAAoL,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,CAAI,EAC1gC,EAEc",
  "debugId": "CB390225198F745064756E2164756E21",
  "names": []
}