{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPodcast1/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 IconPodcast1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconPodcast1\"><Path d=\"M13.0779 20.7532L13.3785 16.9952C13.443 16.1895 12.8065 15.5 11.9982 15.5C11.1898 15.5 10.5533 16.1895 10.6178 16.9952L10.9184 20.7532C10.9635 21.3161 11.4334 21.75 11.9982 21.75C12.5629 21.75 13.0329 21.3161 13.0779 20.7532Z\" stroke=\"currentColor\"/><Path d=\"M13.5 12C13.5 12.8284 12.8284 13.5 12 13.5C11.1716 13.5 10.5 12.8284 10.5 12C10.5 11.1716 11.1716 10.5 12 10.5C12.8284 10.5 13.5 11.1716 13.5 12Z\" stroke=\"currentColor\"/><Path d=\"M12 2C17.5228 2 22 6.47715 22 12C22 15.6988 19.9905 18.9263 17.0049 20.6562L16.6543 19.7041C19.259 18.1272 21 15.2671 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 15.2668 4.74047 18.1271 7.34473 19.7041L6.99414 20.6562C4.00897 18.9262 2 15.6985 2 12C2 6.47715 6.47715 2 12 2Z\" fill=\"currentColor\"/><Path d=\"M12 6C15.3137 6 18 8.68629 18 12C18 13.9685 17.0512 15.7145 15.5869 16.8086L15.2227 15.8203C16.3088 14.9031 17 13.5329 17 12C17 9.23858 14.7614 7 12 7C9.23858 7 7 9.23858 7 12C7 13.5327 7.69053 14.9031 8.77637 15.8203L8.41211 16.8086C6.94814 15.7145 6 13.9682 6 12C6 8.68629 8.68629 6 12 6Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPodcast1;\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,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAA+oC,EAA/oC,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,oOAAoO,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oJAAoJ,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oSAAoS,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qSAAqS,KAAK,eAAc,CAAI,EACvpC,EAEc",
  "debugId": "32C29AA41EB5B32164756E2164756E21",
  "names": []
}