{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEarth2/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 IconEarth2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconEarth2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C14.3048 2 16.426 2.78171 18.1172 4.0918C18.1385 4.10827 18.1595 4.12496 18.1807 4.1416C18.2919 4.22924 18.4014 4.31894 18.5088 4.41113C18.5517 4.44796 18.5944 4.48493 18.6367 4.52246C18.6905 4.57023 18.7441 4.61809 18.7969 4.66699C18.8399 4.70691 18.8815 4.7484 18.9238 4.78906C19.0216 4.88301 19.118 4.97835 19.2119 5.07617C19.2303 5.09527 19.2484 5.11455 19.2666 5.13379C19.4524 5.33031 19.6303 5.53404 19.7998 5.74512C19.8217 5.77238 19.8436 5.79965 19.8652 5.82715C19.9461 5.93001 20.0247 6.03457 20.1016 6.14062C20.1462 6.20226 20.1901 6.26447 20.2334 6.32715C20.2648 6.37262 20.2965 6.41786 20.3271 6.46387C20.3617 6.51577 20.3951 6.56851 20.4287 6.62109C20.4972 6.72813 20.5635 6.83652 20.6279 6.94629C20.6604 7.00159 20.6922 7.05731 20.7236 7.11328C20.7534 7.16625 20.7837 7.2189 20.8125 7.27246C20.8734 7.38568 20.9317 7.50043 20.9883 7.61621C21.005 7.65034 21.0218 7.6844 21.0381 7.71875C21.0948 7.83822 21.1491 7.95903 21.2012 8.08105C21.2151 8.1138 21.2286 8.14677 21.2422 8.17969C21.2806 8.27245 21.3178 8.36581 21.3535 8.45996C21.3721 8.50896 21.3904 8.55806 21.4082 8.60742C21.4512 8.72659 21.4927 8.84655 21.5312 8.96777C21.5451 9.01122 21.5581 9.05493 21.5713 9.09863C21.6017 9.19915 21.6299 9.30051 21.6572 9.40234C21.6681 9.44274 21.6801 9.48284 21.6904 9.52344C21.7233 9.65226 21.7525 9.78231 21.7803 9.91309C21.7891 9.95464 21.7974 9.99634 21.8057 10.0381C21.8328 10.1742 21.8574 10.3112 21.8789 10.4492C21.8813 10.4649 21.8844 10.4804 21.8867 10.4961C21.9076 10.6345 21.9243 10.7739 21.9395 10.9141C21.9429 10.9456 21.9471 10.9771 21.9502 11.0088C21.9645 11.1537 21.9754 11.2996 21.9834 11.4463C21.9849 11.4746 21.987 11.5029 21.9883 11.5312C21.9955 11.6866 22 11.8429 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 11.8537 2.00453 11.7082 2.01074 11.5635C2.01259 11.5205 2.01324 11.4774 2.01562 11.4346C2.02358 11.2918 2.03592 11.1499 2.0498 11.0088C2.0524 10.9824 2.05482 10.956 2.05762 10.9297C2.09104 10.6156 2.13837 10.3057 2.2002 10.001C2.20276 9.98834 2.20442 9.97551 2.20703 9.96289C2.23761 9.8151 2.27255 9.66876 2.30957 9.52344C2.31671 9.49542 2.32368 9.46738 2.33105 9.43945C2.36632 9.3059 2.40374 9.17329 2.44434 9.04199C2.45069 9.02143 2.45738 9.00098 2.46387 8.98047C2.50753 8.84243 2.5541 8.70569 2.60352 8.57031C2.60829 8.55725 2.61334 8.54429 2.61816 8.53125C2.66682 8.39967 2.71849 8.26953 2.77246 8.14062C2.78148 8.11909 2.79064 8.09763 2.7998 8.07617C2.9808 7.65227 3.18933 7.24298 3.4248 6.85156C3.4398 6.82663 3.45549 6.80213 3.4707 6.77734C3.70456 6.39618 3.96287 6.03167 4.24414 5.68652C4.26444 5.66161 4.28513 5.63702 4.30566 5.6123C4.39744 5.50187 4.49153 5.39345 4.58789 5.28711C4.59671 5.27737 4.6054 5.26751 4.61426 5.25781C4.81739 5.03539 5.03067 4.82244 5.25293 4.61914C5.26586 4.60732 5.279 4.59574 5.29199 4.58398C5.39994 4.48628 5.50992 4.39083 5.62207 4.29785C5.63738 4.28516 5.65259 4.27236 5.66797 4.25977C5.77715 4.17034 5.88801 4.08287 6.00098 3.99805C7.6722 2.74294 9.74905 2 12 2ZM12 4C9.77944 4 7.76976 4.9043 6.32031 6.36523C6.54999 7.69918 6.94908 8.9491 8 10C9.41835 11.4184 8.57388 13.5736 9.5 14.5C10.2282 15.2284 10 17.5 11.5 17.5C12.5 17.5 12.8864 15.8352 14 15C14.0218 14.9818 16.9816 12.4956 12.043 11.1172C10.4425 10.6703 11.5001 8.00008 13.5 8.5C15.1997 8.92492 16.1694 7.35973 16.8955 5.6748C15.5423 4.62592 13.8447 4 12 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEarth2;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAg5G,EAAh5G,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2vGAA2vG,KAAK,eAAc,CAAI,EACx5G,EAEc",
  "debugId": "3E171E1D51A1011C64756E2164756E21",
  "names": []
}