{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCoinsAdd/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 IconCoinsAdd: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"coins-add, money\"><path d=\"M6.5 14C6.5 9.51385 9.9754 5.83942 14.3807 5.52222C13.0967 3.98095 11.1629 3 9 3C5.13401 3 2 6.13401 2 10C2 13.147 4.07675 15.809 6.93455 16.6903C6.65266 15.8448 6.5 14.9402 6.5 14Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15 21C18.866 21 22 17.866 22 14C22 10.134 18.866 7 15 7C11.134 7 8 10.134 8 14C8 17.866 11.134 21 15 21ZM15.75 11.75C15.75 11.3358 15.4142 11 15 11C14.5858 11 14.25 11.3358 14.25 11.75V13.25H12.75C12.3358 13.25 12 13.5858 12 14C12 14.4142 12.3358 14.75 12.75 14.75H14.25V16.25C14.25 16.6642 14.5858 17 15 17C15.4142 17 15.75 16.6642 15.75 16.25V14.75H17.25C17.6642 14.75 18 14.4142 18 14C18 13.5858 17.6642 13.25 17.25 13.25H15.75V11.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCoinsAdd;\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,gBAA4wB,EAA5wB,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,wLAAwL,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ybAAyb,KAAK,eAAc,CAAI,GAGtwB",
  "debugId": "06D22F30B22E1A1864756E2164756E21",
  "names": []
}