{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDeepSearch/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 IconDeepSearch: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"deep-search, deep-research, focus-search\"><circle cx=\"12\" cy=\"12\" r=\"4.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M15 15L17.75 17.75\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M8.40278 3.47552C9.50855 3.00832 10.7241 2.75 12 2.75C13.2759 2.75 14.4914 3.00832 15.5972 3.47552M15.5972 20.5245C14.4914 20.9917 13.2759 21.25 12 21.25C10.7241 21.25 9.50855 20.9917 8.40278 20.5245M3.47552 15.5972C3.00832 14.4914 2.75 13.2759 2.75 12C2.75 10.7241 3.00832 9.50855 3.47552 8.40278M20.5245 8.40278C20.9917 9.50855 21.25 10.7241 21.25 12C21.25 13.2759 20.9917 14.4914 20.5245 15.5972\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconDeepSearch;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAqqB,EAArqB,IAAqB,EAAO,UAAU,4CAA2C,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,iZAAiZ,OAAO,eAAe,YAAY,MAAK,CAAI,GAG/pB",
  "debugId": "39A00F78616FA67164756E2164756E21",
  "names": []
}