{"version":3,"sources":["../src/IconFileZip/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFileZip: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"file-zip\">\n      <path\n        d=\"M14.3787 3.87868L13.6716 4.58579V4.58579L14.3787 3.87868ZM18.1213 7.62132L18.8284 6.91421L18.8284 6.91421L18.1213 7.62132ZM14 3.5C14 2.94772 13.5523 2.5 13 2.5C12.4477 2.5 12 2.94772 12 3.5H14ZM18.5 10C19.0523 10 19.5 9.55228 19.5 9C19.5 8.44772 19.0523 8 18.5 8V10ZM6 18V6H4V18H6ZM10 18V16H8V18H10ZM12 16V14H10V16H12ZM10 14V12H8V14H10ZM12 20V18H10V20H12ZM16 20H8V22H16V20ZM13.6716 4.58579L17.4142 8.32843L18.8284 6.91421L15.0858 3.17157L13.6716 4.58579ZM12 3.5V6H14V3.5H12ZM16 10H18.5V8H16V10ZM18 9.74264V18H20V9.74264H18ZM8 4H12.2574V2H8V4ZM4 18C4 20.2091 5.79086 22 8 22V20C6.89543 20 6 19.1046 6 18H4ZM16 22C18.2091 22 20 20.2091 20 18H18C18 19.1046 17.1046 20 16 20V22ZM15.0858 3.17157C14.3356 2.42143 13.3182 2 12.2574 2V4C12.7878 4 13.2965 4.21071 13.6716 4.58579L15.0858 3.17157ZM17.4142 8.32843C17.7893 8.7035 18 9.21221 18 9.74264H20C20 8.68177 19.5786 7.66436 18.8284 6.91421L17.4142 8.32843ZM12 6C12 8.20914 13.7909 10 16 10V8C14.8954 8 14 7.10457 14 6H12ZM6 6C6 4.89543 6.89543 4 8 4V2C5.79086 2 4 3.79086 4 6H6Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconFileZip;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,YACpCC,EAAA,cAAC,QACC,EAAE,ogCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFileZip","props","React","CentralIconBase","IconFileZip_default"]}