{
  "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.5V8.5C4.5 10.7091 6.29086 12.5 8.5 12.5C10.7091 12.5 12.5 10.7091 12.5 8.5V3.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.75V8.5C14 11.2831 11.9326 13.5814 9.25 13.9473V16.375C9.25 18.6532 11.0968 20.5 13.375 20.5C15.6532 20.5 17.5 18.6532 17.5 16.375V13.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.8926V16.375C19 19.4816 16.4816 22 13.375 22C10.2684 22 7.75 19.4816 7.75 16.375V13.9473C5.06737 13.5814 3 11.2831 3 8.5V2.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,gBAA80B,EAA90B,IAAqB,EAAO,UAAU,4CAA2C,gBAAC,OAAD,CAAM,EAAE,8tBAA8tB,KAAK,eAAc,CAAI,GAGx0B",
  "debugId": "CA875269F2B0A5C664756E2164756E21",
  "names": []
}