{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconQuickSearch/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 IconQuickSearch: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"quick-search, quick-menu, command-k\"><path d=\"M4.5 11C4.5 6.85786 7.85786 3.5 12 3.5C16.1421 3.5 19.5 6.85786 19.5 11C19.5 15.1421 16.1421 18.5 12 18.5C11.5858 18.5 11.25 18.8358 11.25 19.25C11.25 19.6642 11.5858 20 12 20C14.2153 20 16.2436 19.1996 17.8116 17.8723L20.7197 20.7803C21.0126 21.0732 21.4874 21.0732 21.7803 20.7803C22.0732 20.4874 22.0732 20.0126 21.7803 19.7197L18.8723 16.8116C20.1996 15.2436 21 13.2153 21 11C21 6.02944 16.9706 2 12 2C7.02944 2 3 6.02944 3 11C3 11.4142 3.33579 11.75 3.75 11.75C4.16421 11.75 4.5 11.4142 4.5 11Z\" fill=\"currentColor\"/><path d=\"M3.70728 16.1744L7.91781 11.2622C8.24039 10.8858 8.85506 11.1577 8.79358 11.6496L8.49979 13.9998H10.9127C11.3399 13.9998 11.5703 14.5009 11.2923 14.8252L7.08178 19.7375C6.7592 20.1139 6.14453 19.842 6.20601 19.3501L6.49979 16.9998H4.0869C3.65973 16.9998 3.42927 16.4988 3.70728 16.1744Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconQuickSearch;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAA+5B,EAA/5B,IAAqB,EAAO,UAAU,uCAAsC,gBAAC,OAAD,CAAM,EAAE,sfAAsf,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iSAAiS,KAAK,eAAc,CAAI,GAGz5B",
  "debugId": "F9890A4783C92A2364756E2164756E21",
  "names": []
}