{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCreditCardAdd/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 IconCreditCardAdd: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"credit-card-add, card, payment\"><path d=\"M2 7.75293C2 5.68186 3.67893 4.00293 5.75 4.00293H18.2461C20.3172 4.00293 21.9961 5.68186 21.9961 7.75293L21.9955 9H2V7.75293Z\" fill=\"currentColor\"/><path d=\"M2 10.5V16.2461C2 18.3172 3.67893 19.9961 5.75 19.9961L14.0001 19.9961L14 17.25C14 16.0074 15.0074 15 16.25 15H17V14.25C17 13.0074 18.0074 12 19.25 12L21.9941 12L21.9948 10.5H2Z\" fill=\"currentColor\"/><path d=\"M20 14.25C20 13.8358 19.6642 13.5 19.25 13.5C18.8358 13.5 18.5 13.8358 18.5 14.25V16.5H16.25C15.8358 16.5 15.5 16.8358 15.5 17.25C15.5 17.6642 15.8358 18 16.25 18H18.5V20.25C18.5 20.6642 18.8358 21 19.25 21C19.6642 21 20 20.6642 20 20.25V18H22.25C22.6642 18 23 17.6642 23 17.25C23 16.8358 22.6642 16.5 22.25 16.5H20V14.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCreditCardAdd;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAA0xB,EAA1xB,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,iIAAiI,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oLAAoL,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qUAAqU,KAAK,eAAc,CAAI,GAGpxB",
  "debugId": "79270BA32BE4224D64756E2164756E21",
  "names": []
}