{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGlobe/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 IconGlobe: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconGlobe\"><Path d=\"M14.9834 13C14.8972 15.5438 14.487 17.7937 13.8896 19.4365C13.5509 20.368 13.1711 21.0514 12.7998 21.4834C12.4256 21.9186 12.1522 22 12.001 22C11.8498 22 11.5763 21.9186 11.2021 21.4834C10.8308 21.0514 10.451 20.368 10.1123 19.4365C9.51491 17.7937 9.10476 15.5438 9.01855 13H14.9834Z\" fill=\"currentColor\"/><Path d=\"M7.01758 13C7.10421 15.7329 7.54258 18.2231 8.23242 20.1201C8.40908 20.6059 8.60792 21.0631 8.82617 21.4824C5.16344 20.2566 2.44511 16.9715 2.05078 13H7.01758Z\" fill=\"currentColor\"/><Path d=\"M21.9512 13C21.5568 16.9718 18.838 20.2569 15.1748 21.4824C15.3931 21.063 15.5928 20.6061 15.7695 20.1201C16.4594 18.2231 16.8977 15.7329 16.9844 13H21.9512Z\" fill=\"currentColor\"/><Path d=\"M8.82617 2.5166C8.60776 2.93611 8.40919 3.39378 8.23242 3.87988C7.54258 5.77694 7.10421 8.26715 7.01758 11H2.05078C2.44512 7.02844 5.1633 3.74231 8.82617 2.5166Z\" fill=\"currentColor\"/><Path d=\"M12.001 2C12.1522 2 12.4256 2.08138 12.7998 2.5166C13.1711 2.94858 13.5509 3.63201 13.8896 4.56348C14.487 6.2063 14.8972 8.4562 14.9834 11H9.01855C9.10476 8.4562 9.51491 6.2063 10.1123 4.56348C10.451 3.63201 10.8308 2.94858 11.2021 2.5166C11.5763 2.08138 11.8498 2 12.001 2Z\" fill=\"currentColor\"/><Path d=\"M15.1748 2.5166C18.8381 3.74207 21.5568 7.02812 21.9512 11H16.9844C16.8977 8.26715 16.4594 5.77694 15.7695 3.87988C15.5927 3.39363 15.3933 2.93622 15.1748 2.5166Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconGlobe;\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,EAA8D,EAAM,KAAK,CAAC,IAAU,CAC/F,OAAO,gBAA67C,EAA77C,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,EAAE,8RAA8R,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kKAAkK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gKAAgK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oKAAoK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qRAAqR,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qKAAqK,KAAK,eAAc,CAAI,EACr8C,EAEc",
  "debugId": "DA2C52CAFE8B369364756E2164756E21",
  "names": []
}