{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTelescope/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTelescope: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"telescope, deep-search, research\"><path d=\"M5.87492 10.9956L1.9981 12.4067C1.47912 12.5955 1.21153 13.1694 1.40042 13.6884L2.16997 15.8027C2.35886 16.3217 2.9327 16.5892 3.45168 16.4003L7.32851 14.9893\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M11.2873 7.89258L6.91707 9.48323C6.1386 9.76657 5.73722 10.6273 6.02056 11.4058L7.17487 14.5773C7.45821 15.3557 8.31898 15.7571 9.09744 15.4738L13.4677 13.8831\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M12.8048 6.20977L19.5951 3.73828L22.5023 11.7257L15.712 14.1972C14.674 14.5749 13.5263 14.0398 13.1485 13.0018L11.6094 8.77319C11.2317 7.73523 11.7668 6.58755 12.8048 6.20977Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\"/><path d=\"M10.75 20.25V14.75\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M7 20.25L14.5 20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconTelescope;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAs3B,EAAt3B,IAAqB,EAAO,UAAU,oCAAmC,gBAAC,OAAD,CAAM,EAAE,iKAAiK,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,kKAAkK,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,kLAAkL,OAAO,eAAe,YAAY,MAAM,cAAc,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,sBAAsB,OAAO,eAAe,YAAY,MAAK,CAAI,GAGh3B",
  "debugId": "B6C7A12A436981E764756E2164756E21",
  "names": []
}