{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLiveNoSignal/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 IconLiveNoSignal: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconLiveNoSignal\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M9.87868 8.46451L9.17157 9.17161C8.44662 9.89657 8 10.8952 8 12C8 13.1049 8.44662 14.1035 9.17157 14.8285L9.87868 15.5356L8.46447 16.9498L7.75736 16.2427C6.67267 15.158 6 13.6566 6 12C6 10.3435 6.67267 8.84209 7.75736 7.7574L8.46447 7.05029L9.87868 8.46451ZM15.5355 7.05029L16.2426 7.7574C17.3273 8.84209 18 10.3435 18 12C18 13.6566 17.3273 15.158 16.2426 16.2427L15.5355 16.9498L14.1213 15.5356L14.8284 14.8285C15.5534 14.1035 16 13.1049 16 12C16 10.8952 15.5534 9.89657 14.8284 9.17161L14.1213 8.46451L15.5355 7.05029Z\" fill=\"currentColor\"/><Path d=\"M11.9999 10.5861L10.5856 9.17177L9.17136 10.586L10.5857 12.0004L9.17165 13.4144L10.5859 14.8287L11.9999 13.4146L13.414 14.8286L14.8282 13.4144L13.4142 12.0004L14.8285 10.586L13.4143 9.17181L11.9999 10.5861Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconLiveNoSignal;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAo5B,EAAp5B,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2gBAA2gB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,CAAI,EAC55B,EAEc",
  "debugId": "AFB27641507BD37B64756E2164756E21",
  "names": []
}