{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFileDownload/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 IconFileDownload: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"file-download, document\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.75 2H12V8.25C12 9.2165 12.7835 10 13.75 10H20V20.25C20 21.2165 19.2165 22 18.25 22H5.75C4.7835 22 4 21.2165 4 20.25V3.75C4 2.7835 4.7835 2 5.75 2ZM15.0303 17.0303L12.5303 19.5303C12.2374 19.8232 11.7626 19.8232 11.4697 19.5303L8.96967 17.0303C8.67678 16.7374 8.67678 16.2626 8.96967 15.9697C9.26256 15.6768 9.73744 15.6768 10.0303 15.9697L11.25 17.1893V12.75C11.25 12.3358 11.5858 12 12 12C12.4142 12 12.75 12.3358 12.75 12.75V17.1893L13.9697 15.9697C14.2626 15.6768 14.7374 15.6768 15.0303 15.9697C15.3232 16.2626 15.3232 16.7374 15.0303 17.0303Z\" fill=\"currentColor\"/><path d=\"M19.4874 8.42678C19.5112 8.45058 19.5343 8.475 19.5566 8.5H13.75C13.6119 8.5 13.5 8.38807 13.5 8.25V2.44343C13.525 2.46571 13.5494 2.48876 13.5732 2.51256L19.4874 8.42678Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFileDownload;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAy3B,EAAz3B,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yiBAAyiB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8KAA8K,KAAK,eAAc,CAAI,GAGn3B",
  "debugId": "621A52C7ED01F34C64756E2164756E21",
  "names": []
}