{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBean/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 IconBean: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bean, java\"><path d=\"M5.6705 5.6705C9.78684 1.55416 16.0997 0.630406 19.7343 4.26499C19.7667 4.2974 19.7988 4.33003 19.8305 4.36287C18.9539 6.74884 17.7916 8.17514 16.5114 9.13381C15.1024 10.189 13.5029 10.7191 11.7688 11.287L11.7235 11.3018C10.0352 11.8547 8.21759 12.45 6.59721 13.6654C5.23343 14.6884 4.04093 16.1229 3.119 18.2653C0.909141 14.5654 2.06545 9.27555 5.6705 5.6705Z\" fill=\"currentColor\"/><path d=\"M4.18276 19.6508C4.2099 19.6788 4.23731 19.7066 4.26499 19.7343C7.89957 23.3689 14.2125 22.4452 18.3288 18.3288C21.9283 14.7294 23.0866 9.45034 20.8906 5.75119C19.9657 7.88465 18.7728 9.31431 17.4106 10.3345C15.7888 11.5489 13.9713 12.1441 12.2838 12.6967L12.2357 12.7125C10.5017 13.2804 8.90365 13.8104 7.49729 14.8654C6.21694 15.8257 5.05573 17.2557 4.18276 19.6508Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBean;\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,gBAA60B,EAA70B,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,EAAE,2WAA2W,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mXAAmX,KAAK,eAAc,CAAI,GAGv0B",
  "debugId": "C5AC1993B4A5EB8564756E2164756E21",
  "names": []
}