{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDrink/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 IconDrink: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"drink, cup, straw, mug\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16.4126 2.48218C16.8169 2.39232 17.0719 1.99169 16.982 1.58734C16.8922 1.18299 16.4915 0.928043 16.0872 1.0179L13.1533 1.66987C11.8951 1.94947 10.9999 3.06546 10.9999 4.35438V6.00005H6.81648C5.80565 6.00005 5.00503 6.85398 5.07011 7.86271L5.39231 12.8568L5.39268 12.8627L5.82035 19.4915C5.9397 21.3414 7.38644 22.8064 9.19609 22.9823C9.31673 22.994 9.43899 23 9.56257 23H14.4372C16.1674 23 17.6374 21.8246 18.0632 20.2088C18.124 19.9779 18.1635 19.7381 18.1794 19.4915L18.9297 7.86272C18.9947 6.85398 18.1941 6.00005 17.1833 6.00005H12.4999V4.35438C12.4999 3.76851 12.9068 3.26124 13.4787 3.13415L16.4126 2.48218ZM6.77564 11L6.567 7.76614C6.5577 7.62204 6.67208 7.50005 6.81648 7.50005H17.1833C17.3277 7.50005 17.4421 7.62204 17.4328 7.76614L17.2241 11H6.77564Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconDrink;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAi4B,EAAj4B,IAAqB,EAAO,UAAU,0BAAyB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6vBAA6vB,KAAK,eAAc,CAAI,GAG33B",
  "debugId": "DC5E8B5F7CAB721A64756E2164756E21",
  "names": []
}