{
  "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.5V10.75C4.5 11.7165 5.2835 12.5 6.25 12.5H10.75C11.7165 12.5 12.5 11.7165 12.5 10.75V3.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.75V10.75C14 12.5449 12.5449 14 10.75 14H9.25V18.25C9.25 19.4923 10.2574 20.4997 11.5 20.5H15.25C16.4926 20.4997 17.5 19.4923 17.5 18.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.8926V18.25C19 20.3211 17.3207 21.9997 15.25 22H11.5C9.42932 21.9997 7.75 20.3211 7.75 18.25V14H6.25C4.45507 14 3 12.5449 3 10.75V2.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,gBAAu2B,EAAv2B,IAAqB,EAAO,UAAU,4CAA2C,gBAAC,OAAD,CAAM,EAAE,uvBAAuvB,KAAK,eAAc,CAAI,GAGj2B",
  "debugId": "364926B45115031064756E2164756E21",
  "names": []
}