{"version":3,"sources":["../src/IconTelescope/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTelescope: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"telescope, deep-search, research\">\n      <path\n        d=\"M15.0344 5.02771C13.9964 5.40549 13.4612 6.55318 13.839 7.59113L15.7201 12.7594C16.0979 13.7974 17.2456 14.3326 18.2836 13.9548L23.9217 11.9027L20.6725 2.97559L15.0344 5.02771Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M6.96245 10.6262C6.67911 9.8477 7.08049 8.98694 7.85896 8.7036L12.0876 7.16451L14.6527 14.2122L11.4992 15.36V19.4998H14.4992V20.9998H6.99923V19.4998H9.99923V15.8396C9.35425 15.8778 8.73384 15.493 8.50154 14.8548L6.96245 10.6262Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M1.19634 13.7888C0.912999 13.0103 1.31438 12.1495 2.09285 11.8662L5.38177 10.6691L7.26288 15.8374L3.97396 17.0345C3.19549 17.3178 2.33473 16.9165 2.05139 16.138L1.19634 13.7888Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconTelescope;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oCACpCC,EAAA,cAAC,QACC,EAAE,mLACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uOACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTelescope","props","React","CentralIconBase","IconTelescope_default"]}