{
  "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=\"M6.75003 3L17.25 3C19.3211 3 21 4.67893 21 6.75V17.25C21 19.3211 19.3211 21 17.25 21H6.75C4.67893 21 2.99999 19.3211 3 17.25L3.00001 13.5H7.49191C8.12002 15.3883 9.90032 16.75 12 16.75C14.0997 16.75 15.88 15.3883 16.5081 13.5L21 13.5L21 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.0922 14.1135 8.80704 12.6102C8.73989 12.2562 8.4305 12 8.07018 12H3.00002L3.00003 6.74999C3.00004 4.67893 4.67897 3 6.75003 3Z\" 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,gBAAwkB,EAAxkB,IAAqB,EAAO,UAAU,sCAAqC,gBAAC,OAAD,CAAM,EAAE,8dAA8d,KAAK,eAAc,CAAI,GAGlkB",
  "debugId": "98CF6837D1753E4264756E2164756E21",
  "names": []
}