{
  "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=\"M20.25 9.99999H20V16.5644C20.5502 16.718 21.0025 17.1357 21.1894 17.6966L21.5228 18.6966C21.9005 19.8298 21.0571 21 19.8626 21H4.13743C2.94295 21 2.0995 19.8298 2.47723 18.6966L2.81056 17.6966C2.99754 17.1357 3.44981 16.718 4 16.5644V9.99999H3.75C2.7835 9.99999 2 9.21649 2 8.24999V7.78824C2 7.128 2.37159 6.52397 2.96089 6.22625L11.2109 2.05837C11.7071 1.80769 12.2929 1.80769 12.7891 2.05837L21.0391 6.22625C21.6284 6.52397 22 7.128 22 7.78824V8.24999C22 9.21649 21.2165 9.99999 20.25 9.99999ZM16 9.99999H18.5V16.5H16V9.99999ZM8 16.5H5.5V9.99999H8V16.5ZM9.5 16.5V9.99999H14.5V16.5H9.5Z\" 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,gBAAgsB,EAAhsB,IAAqB,EAAO,UAAU,QAAO,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8kBAA8kB,KAAK,eAAc,CAAI,GAG1rB",
  "debugId": "519DD98F15207F3164756E2164756E21",
  "names": []
}