{
  "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=\"M4.75 2H12V9.25C12 9.66421 12.3358 10 12.75 10H20V21.25C20 21.6642 19.6642 22 19.25 22H4.75C4.33579 22 4 21.6642 4 21.25V2.75C4 2.33579 4.33579 2 4.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=\"M13.5 2.43934L19.5607 8.5H13.5V2.43934Z\" 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,gBAAyvB,EAAzvB,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6iBAA6iB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0CAA0C,KAAK,eAAc,CAAI,GAGnvB",
  "debugId": "77D73B41639FDCC464756E2164756E21",
  "names": []
}