{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDeepDive/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 IconDeepDive: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconDeepDive\"><Path d=\"M3.65719 3.3457C5.05466 4.96091 6.37844 5.39012 7.79391 5.71875C9.03636 6.00719 10.5352 6.23135 12 7.2373C13.465 6.231 14.9645 6.00726 16.207 5.71875C17.622 5.39014 18.9453 4.96086 20.3427 3.3457L21.5986 1.89453L22.0683 3.75488C22.7024 6.26374 22.6041 8.1694 21.9902 9.7207C21.3826 11.256 20.3182 12.3144 19.3007 13.2002C17.2286 15.0043 15.43 16.1361 15.3955 19.1611C16.993 19.1548 18.6604 18.84 20.538 17.8633L21.4257 17.4014L22.3486 19.1758L21.4619 19.6367C17.5563 21.6685 14.351 21.2443 11.4902 20.7676C8.62749 20.2906 6.24633 19.8087 3.43063 21.1523L2.52828 21.583L1.66695 19.7783L2.5693 19.3477C4.71922 18.3217 6.69421 18.1785 8.54293 18.3271C8.39364 17.2734 7.98783 16.5376 7.46383 15.9277C6.7283 15.0718 5.82241 14.4979 4.72945 13.6191C3.69254 12.7854 2.61554 11.7541 2.00484 10.1533C1.3954 8.5555 1.30051 6.52737 1.92574 3.77832L2.36422 1.85156L3.65719 3.3457Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconDeepDive;\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,gBAAw9B,EAAx9B,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,u2BAAu2B,KAAK,eAAc,CAAI,EACh+B,EAEc",
  "debugId": "E2830BA03EB47F5564756E2164756E21",
  "names": []
}