{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBox2/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 IconBox2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"box-2, inbox, archive, tray, shelf\"><path d=\"M4.75005 3.00001L19.25 3C20.2165 3 21 3.7835 21 4.75L21 12L15.9298 12C15.5695 12 15.2601 12.2562 15.1929 12.6102C14.9078 14.1135 13.5858 15.25 12 15.25C10.4142 15.25 9.09221 14.1135 8.80705 12.6102C8.7399 12.2562 8.43051 12 8.0702 12H3.00002L3.00005 4.75C3.00005 3.7835 3.78355 3.00001 4.75005 3.00001Z\" fill=\"currentColor\"/><path d=\"M3.00002 13.5L3 19.25C3 20.2165 3.7835 21 4.75 21H19.25C20.2165 21 21 20.2165 21 19.25L21 13.5L16.5081 13.5C15.88 15.3883 14.0997 16.75 12 16.75C9.90033 16.75 8.12003 15.3883 7.49192 13.5H3.00002Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBox2;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAA+nB,EAA/nB,IAAqB,EAAO,UAAU,sCAAqC,gBAAC,OAAD,CAAM,EAAE,iTAAiT,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,CAAI,GAGznB",
  "debugId": "A8FE8927A80C95F764756E2164756E21",
  "names": []
}