{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBeer/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 IconBeer: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"beer, cheers\"><path d=\"M4.75 7V20.25H17.25V7\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M17.25 8.75H18C19.7949 8.75 21.25 10.2051 21.25 12C21.25 13.7949 19.7949 15.25 18 15.25H17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M8.00042 9.00004V8.00004C8.00042 7.44775 7.55271 7.00004 7.00042 7.00004H5.52225C5.03441 7.00004 4.57302 6.77828 4.26827 6.39734L4.21237 6.32747C3.92257 5.96522 3.82613 5.48507 3.95357 5.03902C4.12928 4.42404 4.69139 4.00004 5.33098 4.00004H6.76364C6.9213 4.00004 7.07876 3.98885 7.23483 3.96655L9.93474 3.58085C10.31 3.52725 10.6909 3.52725 11.0661 3.58085L13.719 3.95984C13.9064 3.9866 14.0954 4.00004 14.2847 4.00004H16.4786C16.9664 4.00004 17.4278 4.2218 17.7326 4.60274L17.848 4.74697C18.1004 5.06256 18.1845 5.48089 18.0734 5.8695C17.892 6.50449 17.2473 6.88824 16.6026 6.74498L16.0116 6.61364C15.6771 6.53931 15.3287 6.55728 15.0036 6.66565L14.502 6.83285C14.1726 6.94264 13.8214 6.9702 13.4789 6.91312L13.1365 6.85605C12.0183 6.66969 11.0004 7.53197 11.0004 8.66556V9.00004C11.0004 9.82847 10.3289 10.5 9.50042 10.5C8.672 10.5 8.00042 9.82847 8.00042 9.00004Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconBeer;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAwqC,EAAxqC,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,wBAAwB,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,gGAAgG,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,s2BAAs2B,OAAO,eAAe,YAAY,MAAK,CAAI,GAGlqC",
  "debugId": "D6107B5AD72278A364756E2164756E21",
  "names": []
}