{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFolderDownload/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 IconFolderDownload: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"folder-download\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 6.75C2 4.67893 3.67893 3 5.75 3H8.39445C9.64827 3 10.8191 3.62663 11.5146 4.66987L12.0303 5.44338C12.2621 5.79112 12.6524 6 13.0704 6H18.25C20.3211 6 22 7.67893 22 9.75V16.25C22 18.3211 20.3211 20 18.25 20H5.75C3.67893 20 2 18.3211 2 16.25V6.75ZM15.0303 16.0303L12.5303 18.5303C12.2374 18.8232 11.7626 18.8232 11.4697 18.5303L8.96967 16.0303C8.67678 15.7374 8.67678 15.2626 8.96967 14.9697C9.26256 14.6768 9.73744 14.6768 10.0303 14.9697L11.25 16.1893V11.75C11.25 11.3358 11.5858 11 12 11C12.4142 11 12.75 11.3358 12.75 11.75V16.1893L13.9697 14.9697C14.2626 14.6768 14.7374 14.6768 15.0303 14.9697C15.3232 15.2626 15.3232 15.7374 15.0303 16.0303Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderDownload;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAAywB,EAAzwB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4oBAA4oB,KAAK,eAAc,CAAI,GAGnwB",
  "debugId": "FE337625838E58D564756E2164756E21",
  "names": []
}