{"version":3,"sources":["../src/IconPayment/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPayment: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"payment, flow, connection\">\n      <path\n        d=\"M12.0001 8.75C10.4228 8.75 9.08914 7.70658 8.65179 6.27231C6.87077 7.15984 5.49156 8.73499 4.86253 10.6488L4.62834 11.3613L3.20334 10.8929L3.43753 10.1804C4.25799 7.68417 6.13868 5.67106 8.54757 4.67232C8.82295 3.01421 10.2639 1.75 12.0001 1.75C13.9331 1.75 15.5001 3.317 15.5001 5.25C15.5001 7.183 13.9331 8.75 12.0001 8.75Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M18.7863 7.08064L18.2936 6.5152L17.1627 7.50064L17.6554 8.06608C18.8048 9.38505 19.5 11.1076 19.5 12.9944C19.5 13.2637 19.4859 13.5293 19.4583 13.7909C18.0725 13.5763 16.6346 14.2128 15.8913 15.5002C14.9249 17.174 15.4984 19.3143 17.1722 20.2807C18.846 21.2471 20.9863 20.6736 21.9527 18.9998C22.8744 17.4034 22.3953 15.3827 20.8969 14.3608C20.9649 13.9149 21 13.4585 21 12.9944C21 10.7317 20.1646 8.66229 18.7863 7.08064Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M8.10113 15.5002C8.81103 16.7298 8.68996 18.2111 7.91217 19.2939C9.08708 20.057 10.4883 20.5 11.9945 20.5C12.4764 20.5 12.947 20.4547 13.4026 20.3683L14.1394 20.2285L14.419 21.7022L13.6821 21.842C13.1349 21.9458 12.5707 22 11.9945 22C10.0401 22 8.22961 21.3767 6.75322 20.3184C5.08972 21.2316 2.99327 20.6513 2.03975 18.9998C1.07337 17.326 1.64686 15.1857 3.32067 14.2193C4.99447 13.2529 7.13476 13.8264 8.10113 15.5002Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconPayment;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpCC,EAAA,cAAC,QACC,EAAE,wUACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,yaACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uaACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPayment","props","React","CentralIconBase","IconPayment_default"]}