{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBasket2/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 IconBasket2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"basket-2, shopping-bag\"><path d=\"M8.94636 4.02874C9.1002 3.64415 8.91313 3.20768 8.52855 3.05384C8.14396 2.90001 7.70748 3.08707 7.55365 3.47166L5.74231 8H2.75001C2.52862 8 2.31854 8.09781 2.17604 8.26724C2.03353 8.43666 1.97316 8.66039 2.0111 8.87851L4.0111 20.3785C4.07357 20.7377 4.38537 21 4.75001 21H19.25C19.6146 21 19.9264 20.7377 19.9889 20.3785L21.9889 8.87851C22.0268 8.66039 21.9665 8.43666 21.824 8.26724C21.6815 8.09781 21.4714 8 21.25 8H18.2577L16.4464 3.47166C16.2925 3.08707 15.856 2.90001 15.4715 3.05384C15.0869 3.20768 14.8998 3.64415 15.0536 4.02874L16.6421 8H7.35786L8.94636 4.02874Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBasket2;\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,gBAA4pB,EAA5pB,IAAqB,EAAO,UAAU,0BAAyB,gBAAC,OAAD,CAAM,EAAE,8jBAA8jB,KAAK,eAAc,CAAI,GAGtpB",
  "debugId": "3AC0E3FC1427FE1A64756E2164756E21",
  "names": []
}