{"version":3,"sources":["../src/IconMedicinePill/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMedicinePill: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"medicine-pill\">\n      <path\n        d=\"M9.71461 3.59312C11.8388 1.46896 15.2827 1.46896 17.4069 3.59312C18.6821 4.86833 19.1915 6.61842 18.9359 8.27334C17.8949 7.77752 16.7298 7.5 15.5 7.5C13.5609 7.5 11.783 8.18988 10.3982 9.33758L7.1842 6.12353L9.71461 3.59312Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M7.5 15.5C7.5 13.5609 8.18988 11.783 9.33758 10.3982L6.12353 7.1842L3.59312 9.71461C1.46896 11.8388 1.46896 15.2827 3.59312 17.4069C4.86833 18.6821 6.61842 19.1915 8.27334 18.9359C7.77752 17.8949 7.5 16.7298 7.5 15.5Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M9 15.5C9 12.5687 10.9403 10.0906 13.6067 9.28006L15.917 21.9868C15.7791 21.9956 15.6401 22 15.5 22C11.9101 22 9 19.0899 9 15.5Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M22 15.5C22 18.4314 20.0595 20.9095 17.3931 21.72L15.0827 9.01318C15.2207 9.00444 15.3598 9 15.5 9C19.0899 9 22 11.9101 22 15.5Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconMedicinePill;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iBACpCC,EAAA,cAAC,QACC,EAAE,mOACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4NACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mIACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMedicinePill","props","React","CentralIconBase","IconMedicinePill_default"]}