{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconZip/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 IconZip: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"zip, rar, compressed, archive\"><path d=\"M10.5 16V14.5H13.5V16C13.5 16.8284 12.8284 17.5 12 17.5C11.1716 17.5 10.5 16.8284 10.5 16Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.75004 3.00001L19.25 3C20.2165 3 21 3.7835 21 4.75V19.25C21 20.2165 20.2165 21 19.25 21H4.75C3.7835 21 2.99999 20.2165 3 19.25L3.00004 4.75C3.00005 3.7835 3.78355 3.00001 4.75004 3.00001ZM9.75 5C9.33579 5 9 5.33579 9 5.75C9 6.16421 9.33579 6.5 9.75 6.5H14.25C14.6642 6.5 15 6.16421 15 5.75C15 5.33579 14.6642 5 14.25 5H9.75ZM9 9.75C9 9.33579 9.33579 9 9.75 9H14.25C14.6642 9 15 9.33579 15 9.75C15 10.1642 14.6642 10.5 14.25 10.5H9.75C9.33579 10.5 9 10.1642 9 9.75ZM9.75 13C9.33579 13 9 13.3358 9 13.75V16C9 17.6569 10.3431 19 12 19C13.6569 19 15 17.6569 15 16V13.75C15 13.3358 14.6642 13 14.25 13H9.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconZip;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAo2B,EAAp2B,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,6FAA6F,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+lBAA+lB,KAAK,eAAc,CAAI,GAG91B",
  "debugId": "A19E9B5EE53F601C64756E2164756E21",
  "names": []
}