{
  "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-outlined-radius-0-stroke-1-IconTelescope\"><Path d=\"M5.98343 10.3608L2.22466 11.7289C1.70568 11.9178 1.43809 12.4917 1.62699 13.0106L2.65305 15.8297C2.84194 16.3487 3.41578 16.6163 3.93476 16.4274L7.49728 15.1307\" stroke=\"currentColor\"/><Path d=\"M11.7483 7.19775L7.04988 8.90785C6.27141 9.19119 5.87003 10.052 6.15337 10.8304L7.52145 14.5892C7.80479 15.3677 8.66555 15.769 9.44402 15.4857L14.0807 13.7981\" stroke=\"currentColor\"/><Path d=\"M12.8282 5.74063L19.3935 3.35107L22.4675 11.7968L15.9394 14.183C14.9059 14.5607 13.7613 14.0326 13.3781 13.0011L11.6375 8.3166C11.251 7.27629 11.7854 6.1202 12.8282 5.74063Z\" stroke=\"currentColor\"/><Path d=\"M10.5 20.5V15\" stroke=\"currentColor\"/><Path d=\"M7 20.5L14 20.5\" stroke=\"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,gBAAwwB,EAAxwB,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,mKAAmK,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iKAAiK,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gLAAgL,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kBAAkB,OAAO,eAAc,CAAI,EAChxB,EAEc",
  "debugId": "FEB6AE4BF2DE325F64756E2164756E21",
  "names": []
}