{
  "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=\"M15.0344 4.778C13.9964 5.15579 13.4612 6.30347 13.839 7.34143L15.7201 12.5097C16.0979 13.5477 17.2456 14.0829 18.2836 13.7051L22.982 11.995C23.501 11.8061 23.7686 11.2322 23.5797 10.7133L21.0145 3.66558C20.8257 3.1466 20.2518 2.87901 19.7328 3.0679L15.0344 4.778Z\" fill=\"currentColor\"/><path d=\"M6.96245 10.3765C6.67911 9.598 7.08049 8.73724 7.85896 8.4539L12.0876 6.91481L14.6527 13.9625L11.4992 15.1103V19.5001H13.7492C14.1634 19.5001 14.4992 19.8359 14.4992 20.2501C14.4992 20.6643 14.1634 21.0001 13.7492 21.0001H7.74923C7.33501 21.0001 6.99923 20.6643 6.99923 20.2501C6.99923 19.8359 7.33501 19.5001 7.74923 19.5001H9.99923V15.5899C9.35425 15.6281 8.73384 15.2433 8.50154 14.6051L6.96245 10.3765Z\" fill=\"currentColor\"/><path d=\"M1.19634 13.5391C0.912999 12.7606 1.31438 11.8998 2.09285 11.6165L5.38177 10.4194L7.26288 15.5877L3.97396 16.7848C3.19549 17.0681 2.33473 16.6668 2.05139 15.8883L1.19634 13.5391Z\" fill=\"currentColor\"/></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,gBAA0/B,EAA1/B,IAAqB,EAAO,UAAU,oCAAmC,gBAAC,OAAD,CAAM,EAAE,0QAA0Q,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yZAAyZ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qLAAqL,KAAK,eAAc,CAAI,GAGp/B",
  "debugId": "D25DEE21C29F2ABA64756E2164756E21",
  "names": []
}