{
  "version": 3,
  "sources": ["src/IconGlobe2/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconGlobe2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconGlobe2\"><Path d=\"M15.1934 16C14.9958 17.2293 14.7106 18.3301 14.3613 19.2471C14.0122 20.1635 13.6082 20.8705 13.1855 21.3398C12.7626 21.8094 12.3611 22 12 22C11.6389 22 11.2374 21.8094 10.8145 21.3398C10.3918 20.8705 9.98782 20.1635 9.63867 19.2471C9.28936 18.3301 9.00421 17.2293 8.80664 16H15.1934Z\" fill=\"currentColor\"/><Path d=\"M7.79492 16C8.00259 17.3524 8.31272 18.5751 8.7041 19.6025C9.03059 20.4596 9.42062 21.2006 9.86914 21.7695C6.70608 21.0828 4.10298 18.9013 2.83496 16H7.79492Z\" fill=\"currentColor\"/><Path d=\"M21.165 16C19.8969 18.9015 17.2934 21.0831 14.1299 21.7695C14.5786 21.2005 14.9693 20.4598 15.2959 19.6025C15.6873 18.5751 15.9974 17.3524 16.2051 16H21.165Z\" fill=\"currentColor\"/><Path d=\"M7.66309 9C7.55707 9.95463 7.5 10.9613 7.5 12C7.5 13.0387 7.55707 14.0454 7.66309 15H2.45801C2.16055 14.0529 2 13.0452 2 12C2 10.9548 2.16055 9.94706 2.45801 9H7.66309Z\" fill=\"currentColor\"/><Path d=\"M15.3301 9C15.4396 9.9463 15.5 10.9534 15.5 12C15.5 13.0466 15.4396 14.0537 15.3301 15H8.66992C8.5604 14.0537 8.5 13.0466 8.5 12C8.5 10.9534 8.5604 9.9463 8.66992 9H15.3301Z\" fill=\"currentColor\"/><Path d=\"M21.542 9C21.8395 9.94706 22 10.9548 22 12C22 13.0452 21.8395 14.0529 21.542 15H16.3369C16.4429 14.0454 16.5 13.0387 16.5 12C16.5 10.9613 16.4429 9.95463 16.3369 9H21.542Z\" fill=\"currentColor\"/><Path d=\"M9.86914 2.22949C9.42042 2.79853 9.0307 3.54013 8.7041 4.39746C8.31272 5.42488 8.00259 6.6476 7.79492 8H2.83496C4.103 5.09868 6.70599 2.91613 9.86914 2.22949Z\" fill=\"currentColor\"/><Path d=\"M12 2C12.3611 2 12.7626 2.1906 13.1855 2.66016C13.6082 3.12954 14.0122 3.83651 14.3613 4.75293C14.7106 5.66988 14.9958 6.77069 15.1934 8H8.80664C9.00421 6.77069 9.28936 5.66988 9.63867 4.75293C9.98782 3.83651 10.3918 3.12954 10.8145 2.66016C11.2374 2.1906 11.6389 2 12 2Z\" fill=\"currentColor\"/><Path d=\"M14.1299 2.22949C17.2935 2.91591 19.8969 5.09839 21.165 8H16.2051C15.9974 6.6476 15.6873 5.42488 15.2959 4.39746C14.9692 3.5399 14.5788 2.79859 14.1299 2.22949Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconGlobe2;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAA+D,EAAM,KAAK,CAAC,IAC/E,gBAAohE,EAAphE,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,EAAE,8RAA8R,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iKAAiK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gKAAgK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2KAA2K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gLAAgL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8KAA8K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iKAAiK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kRAAkR,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mKAAmK,KAAK,eAAc,CAAI,CAC5hE,EAEc",
  "debugId": "36D0B7005BF9932064756E2164756E21",
  "names": []
}