{
  "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=\"M3.75005 3.00001L20.25 3C20.4489 3 20.6397 3.07902 20.7803 3.21967C20.921 3.36032 21 3.55109 21 3.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.80706 12.6102C8.73991 12.2562 8.43051 12 8.0702 12H3L3.00005 3.75C3.00005 3.33579 3.33584 3.00001 3.75005 3.00001Z\" fill=\"currentColor\"/><path d=\"M3 13.5V20.25C3 20.4489 3.07902 20.6397 3.21967 20.7803C3.36032 20.921 3.55109 21 3.75 21H20.25C20.6642 21 21 20.6642 21 20.25L21 13.5L16.5081 13.5C15.88 15.3883 14.0997 16.75 12 16.75C9.90034 16.75 8.12003 15.3883 7.49192 13.5H3Z\" 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,gBAA6sB,EAA7sB,IAAqB,EAAO,UAAU,sCAAqC,gBAAC,OAAD,CAAM,EAAE,6VAA6V,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yOAAyO,KAAK,eAAc,CAAI,GAGvsB",
  "debugId": "E537EF227E6A04A964756E2164756E21",
  "names": []
}