{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBank/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 IconBank: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bank\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M22 7.9641C22 9.0765 21.1078 9.98052 20 9.99967V16.9385C20.7248 17.3459 21.2951 18.0135 21.5707 18.8402C21.9248 19.9027 21.134 21 20.014 21H3.986C2.86602 21 2.07518 19.9027 2.42934 18.8402C2.70493 18.0135 3.27518 17.3459 4 16.9385V9.99967C2.89217 9.98052 2 9.0765 2 7.9641C2 7.196 2.43229 6.49329 3.11786 6.14694L10.309 2.51397C11.3724 1.97679 12.6276 1.97679 13.691 2.51397L20.8821 6.14694C21.5677 6.49329 22 7.196 22 7.9641ZM16 9.99998H18.5V16.5045C18.4415 16.5015 18.3828 16.5 18.3237 16.5H16V9.99998ZM14.5 16.5H9.5V9.99998H14.5V16.5ZM8 16.5V9.99998H5.5V16.5045C5.55847 16.5015 5.61724 16.5 5.67628 16.5H8Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBank;\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,gBAAstB,EAAttB,IAAqB,EAAO,UAAU,QAAO,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,omBAAomB,KAAK,eAAc,CAAI,GAGhtB",
  "debugId": "F9F29BA8F3143EC064756E2164756E21",
  "names": []
}