{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTelescope/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 IconTelescope: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconTelescope\"><Path d=\"M15.0344 4.52771C13.9964 4.90549 13.4612 6.05318 13.839 7.09113L15.7201 12.2594C16.0979 13.2974 17.2456 13.8326 18.2836 13.4548L23.9217 11.4027L20.6725 2.47559L15.0344 4.52771Z\" fill=\"currentColor\"/><Path d=\"M6.96221 10.1262C6.67887 9.3477 7.08025 8.48694 7.85872 8.2036L12.0873 6.66451L14.6525 13.7122L11.9992 14.6779V18.9998H14.9992V20.9998H6.99923V18.9998H9.99923V15.3395C9.35416 15.3779 8.73362 14.9931 8.5013 14.3548L6.96221 10.1262Z\" fill=\"currentColor\"/><Path d=\"M1.19634 13.2888C0.912999 12.5103 1.31438 11.6495 2.09285 11.3662L5.38177 10.1691L7.26288 15.3374L3.97396 16.5345C3.19549 16.8178 2.33473 16.4165 2.05139 15.638L1.19634 13.2888Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconTelescope;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAA4vB,EAA5vB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,mLAAmL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yOAAyO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oLAAoL,KAAK,eAAc,CAAI,EACpwB,EAEc",
  "debugId": "54025E717809F0E964756E2164756E21",
  "names": []
}