{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArchive/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 IconArchive: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"archive, folder, box\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.75 2C5.33579 2 5 2.33579 5 2.75V8H3.75C3.33579 8 3 8.33579 3 8.75V20.25C3 20.6642 3.33579 21 3.75 21H20.255C20.6692 21 21.005 20.6642 21.005 20.25V8.75C21.005 8.33579 20.6692 8 20.255 8H19V4.75C19 4.33579 18.6642 4 18.25 4H12.8107L11.0303 2.21967C10.8897 2.07902 10.6989 2 10.5 2H5.75ZM17.5 8V5.5H12.5C12.3011 5.5 12.1103 5.42098 11.9697 5.28033L10.1893 3.5H6.5V8H17.5ZM7 12.75C7 12.3358 7.33579 12 7.75 12H11.75C12.1642 12 12.5 12.3358 12.5 12.75C12.5 13.1642 12.1642 13.5 11.75 13.5H7.75C7.33579 13.5 7 13.1642 7 12.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArchive;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAipB,EAAjpB,IAAqB,EAAO,UAAU,wBAAuB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+gBAA+gB,KAAK,eAAc,CAAI,GAG3oB",
  "debugId": "7FCA2AD3062BC6A564756E2164756E21",
  "names": []
}