{
  "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.0179L12.3702 1.84388C11.5696 2.02181 10.9999 2.73199 10.9999 3.55221V6.00005H6.81648C5.80565 6.00005 5.00503 6.85398 5.07011 7.86271L5.39231 12.8568L5.39268 12.8627L5.94108 21.3627C5.99677 22.226 6.67192 22.9097 7.51642 22.9918C7.57272 22.9972 7.62978 23 7.68745 23H16.3123C17.1197 23 17.8058 22.4515 18.0044 21.6975C18.0328 21.5897 18.0513 21.4778 18.0587 21.3627L18.9297 7.86272C18.9947 6.85398 18.1941 6.00005 17.1833 6.00005H12.4999V3.55221C12.4999 3.43504 12.5813 3.33358 12.6956 3.30816L16.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,gBAAm4B,EAAn4B,IAAqB,EAAO,UAAU,0BAAyB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+vBAA+vB,KAAK,eAAc,CAAI,GAG73B",
  "debugId": "FE75706E23876A1364756E2164756E21",
  "names": []
}