{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCocktail/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 IconCocktail: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"cocktail, drink\"><path d=\"M2.75002 3C2.44678 3 2.17338 3.1826 2.05723 3.46271C1.94107 3.74282 2.00502 4.06532 2.21927 4.27991L11.25 13.325V20.5H7.77362C7.3594 20.5 7.02362 20.8358 7.02362 21.25C7.02362 21.6642 7.3594 22 7.77362 22H16.2745C16.6887 22 17.0245 21.6642 17.0245 21.25C17.0245 20.8358 16.6887 20.5 16.2745 20.5H12.75V13.325L21.7808 4.27991C21.995 4.06532 22.059 3.74282 21.9428 3.46271C21.8267 3.1826 21.5533 3 21.25 3H2.75002Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCocktail;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAsf,EAAtf,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,+ZAA+Z,KAAK,eAAc,CAAI,GAGhf",
  "debugId": "B7A648DF154CFC9664756E2164756E21",
  "names": []
}