{
  "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\"><path d=\"M15.0635 19.9355C15.4311 19.8383 15.8204 20.0339 15.957 20.3975C16.1026 20.7851 15.9062 21.2175 15.5186 21.3633L15.1035 21.5088C14.1257 21.8277 13.0823 22 12 22C10.9177 22 9.87431 21.8277 8.89648 21.5088L8.48145 21.3633L8.41113 21.333C8.0706 21.1641 7.90649 20.7609 8.04297 20.3975C8.17965 20.0339 8.56894 19.8383 8.93652 19.9355L9.00977 19.959L9.36133 20.083C10.1911 20.3537 11.0778 20.5 12 20.5C13.0538 20.5 14.061 20.3083 14.9902 19.959L15.0635 19.9355Z\" fill=\"currentColor\"/><path d=\"M12 9.5C13.3807 9.5 14.5 10.6193 14.5 12C14.5 13.3807 13.3807 14.5 12 14.5C10.6193 14.5 9.5 13.3807 9.5 12C9.5 10.6193 10.6193 9.5 12 9.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 7C14.7614 7 17 9.23858 17 12C17 13.1101 16.6375 14.1352 16.0254 14.9648L18.0303 16.9697L18.082 17.0264C18.3223 17.3209 18.3049 17.7557 18.0303 18.0303C17.7557 18.3049 17.3209 18.3223 17.0264 18.082L16.9697 18.0303L14.9648 16.0254C14.1352 16.6375 13.1101 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7ZM12 8.5C10.067 8.5 8.5 10.067 8.5 12C8.5 13.933 10.067 15.5 12 15.5C12.9454 15.5 13.8018 15.1238 14.4316 14.5146C14.4443 14.4998 14.4557 14.4837 14.4697 14.4697C14.4837 14.4557 14.4998 14.4443 14.5146 14.4316C15.1238 13.8018 15.5 12.9454 15.5 12C15.5 10.067 13.933 8.5 12 8.5Z\" fill=\"currentColor\"/><path d=\"M2.63672 8.48145C2.78258 8.09392 3.21491 7.89823 3.60254 8.04395C3.99023 8.18971 4.18676 8.62206 4.04102 9.00977C3.69172 9.93898 3.5 10.9462 3.5 12C3.5 13.0538 3.69172 14.061 4.04102 14.9902C4.18676 15.3779 3.99023 15.8103 3.60254 15.9561C3.21491 16.1018 2.78258 15.9061 2.63672 15.5186C2.22494 14.4232 2 13.2368 2 12C2 10.7632 2.22494 9.57685 2.63672 8.48145Z\" fill=\"currentColor\"/><path d=\"M21.3633 15.5186C21.2174 15.9061 20.7851 16.1018 20.3975 15.9561C20.0098 15.8103 19.8132 15.3779 19.959 14.9902L21.3633 15.5186Z\" fill=\"currentColor\"/><path d=\"M21.3633 8.48145C21.7751 9.57685 22 10.7632 22 12C22 13.2368 21.7751 14.4232 21.3633 15.5186L20.6611 15.2539L19.959 14.9902C20.3083 14.061 20.5 13.0538 20.5 12C20.5 10.9462 20.3083 9.93898 19.959 9.00977L20.6611 8.74609L21.3633 8.48145Z\" fill=\"currentColor\"/><path d=\"M20.3975 8.04395C20.7851 7.89823 21.2174 8.09392 21.3633 8.48145L19.959 9.00977C19.8132 8.62206 20.0098 8.18971 20.3975 8.04395Z\" fill=\"currentColor\"/><path d=\"M12 2C13.0823 2 14.1257 2.17226 15.1035 2.49121L15.5186 2.63672L15.5889 2.66699C15.9294 2.83593 16.0935 3.23906 15.957 3.60254C15.8204 3.9661 15.4311 4.16173 15.0635 4.06445L14.9902 4.04102L14.6387 3.91699C13.8089 3.6463 12.9222 3.5 12 3.5C10.9462 3.5 9.93898 3.69172 9.00977 4.04102L8.93652 4.06445C8.56894 4.16173 8.17965 3.9661 8.04297 3.60254C7.89742 3.2149 8.09384 2.78245 8.48145 2.63672L8.89648 2.49121C9.87431 2.17226 10.9177 2 12 2Z\" fill=\"currentColor\"/></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,gBAA0yF,EAA1yF,IAAqB,EAAO,UAAU,4CAA2C,gBAAC,OAAD,CAAM,EAAE,2cAA2c,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6IAA6I,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qlBAAqlB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2WAA2W,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mIAAmI,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+OAA+O,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mIAAmI,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4bAA4b,KAAK,eAAc,CAAI,GAGpyF",
  "debugId": "79F8207D1A074C4164756E2164756E21",
  "names": []
}