{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWeb3/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 IconWeb3: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconWeb3\"><Path d=\"M3.62617 17.4701C5.92566 20.9919 10.3052 22.8071 14.5888 21.6593C18.8725 20.5115 21.7577 16.7498 21.9882 12.55C21.6382 12.7409 21.2734 12.9241 20.9033 13.0991C18.8671 14.0618 16.089 15.0456 13.0359 15.8637C9.98286 16.6818 7.08499 17.2188 4.84028 17.4032C4.43223 17.4367 4.02476 17.4604 3.62617 17.4701Z\" fill=\"currentColor\"/><Path d=\"M9.41246 2.34077C13.7231 1.18574 18.1285 3.0308 20.4165 6.59427C20.9481 6.60144 21.431 6.64409 21.8355 6.73531C22.1094 6.79707 22.4024 6.8929 22.6608 7.05459C22.925 7.21988 23.2176 7.49782 23.3329 7.92827C23.4724 8.44864 23.2787 8.8988 23.0905 9.18443C22.8993 9.47464 22.6307 9.7288 22.3528 9.94798C21.7903 10.3915 20.99 10.8459 20.0484 11.291C18.1503 12.1885 15.492 13.1351 12.5183 13.9319C9.54456 14.7287 6.76911 15.238 4.67657 15.4099C3.6386 15.4952 2.71829 15.5019 2.00943 15.399C1.65916 15.3481 1.29943 15.2623 0.988739 15.1066C0.682953 14.9533 0.290156 14.6603 0.150724 14.1399C0.0353842 13.7095 0.149836 13.3225 0.295948 13.0472C0.438882 12.778 0.64476 12.5485 0.851033 12.3581C1.15574 12.0768 1.55264 11.7984 2.00946 11.5264C2.20913 7.29639 5.10185 3.49579 9.41246 2.34077Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWeb3;\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,EAA6D,EAAM,KAAK,CAAC,IAAU,CAC9F,OAAO,gBAA2sC,EAA3sC,IAAqB,EAAO,OAAO,4CAA2C,gBAAC,EAAD,CAAM,EAAE,iTAAiT,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gxBAAgxB,KAAK,eAAc,CAAI,EACntC,EAEc",
  "debugId": "2FEE6437308AA7B164756E2164756E21",
  "names": []
}