{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEthereum/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 IconEthereum: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"ethereum\"><path d=\"M11.7367 14.2022L10.0761 13.5796L12 16.2249L13.9239 13.5796L12.2633 14.2022C12.0936 14.2659 11.9064 14.2659 11.7367 14.2022Z\" fill=\"currentColor\"/><path d=\"M12 12.699L14.8136 11.6439L12 7.77514L9.18636 11.6439L12 12.699Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM12.6066 6.05887C12.4654 5.86481 12.24 5.75 12 5.75C11.76 5.75 11.5346 5.86481 11.3934 6.05887L7.39345 11.5589C7.20218 11.8219 7.20218 12.1781 7.39345 12.4411L11.3934 17.9411C11.5346 18.1352 11.76 18.25 12 18.25C12.24 18.25 12.4654 18.1352 12.6066 17.9411L16.6066 12.4411C16.7978 12.1781 16.7978 11.8219 16.6066 11.5589L12.6066 6.05887Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEthereum;\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,gBAAqzB,EAArzB,IAAqB,EAAO,UAAU,YAAW,gBAAC,OAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mEAAmE,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mcAAmc,KAAK,eAAc,CAAI,GAG/yB",
  "debugId": "B9DE3C4E63152A9864756E2164756E21",
  "names": []
}