{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconStethoscope/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 IconStethoscope: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"stethoscope, check, diagnostics, analyze\"><path d=\"M6 2C6.41421 2 6.75 2.33579 6.75 2.75C6.75 3.16421 6.41421 3.5 6 3.5H4.5V11.25C4.5 11.9404 5.05964 12.5 5.75 12.5H11.25C11.9404 12.5 12.5 11.9404 12.5 11.25V3.5H11C10.5858 3.5 10.25 3.16421 10.25 2.75C10.25 2.33579 10.5858 2 11 2H13.25C13.6642 2 14 2.33579 14 2.75V11.25C14 12.7688 12.7688 14 11.25 14H9.25V19.25C9.25 19.9402 9.80964 20.4999 10.5 20.5H16.25C16.9404 20.4999 17.5 19.9402 17.5 19.25V13.8926C16.3463 13.5658 15.5 12.5084 15.5 11.25C15.5 9.73122 16.7312 8.5 18.25 8.5C19.7688 8.5 21 9.73122 21 11.25C21 12.5084 20.1537 13.5658 19 13.8926V19.25C19 20.7688 17.7686 21.9999 16.25 22H10.5C8.98138 21.9999 7.75 20.7688 7.75 19.25V14H5.75C4.23122 14 3 12.7688 3 11.25V2.75C3 2.55109 3.07907 2.36038 3.21973 2.21973C3.36038 2.07907 3.55109 2 3.75 2H6Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconStethoscope;\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,gBAAw2B,EAAx2B,IAAqB,EAAO,UAAU,4CAA2C,gBAAC,OAAD,CAAM,EAAE,wvBAAwvB,KAAK,eAAc,CAAI,GAGl2B",
  "debugId": "D0981F717F3F8ADE64756E2164756E21",
  "names": []
}