{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTruck/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 IconTruck: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"truck, delivery\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.75 4C8.33579 4 8 4.33579 8 4.75V6H5C4.75389 6 4.52344 6.12074 4.38336 6.32309L2.13336 9.57309C2.04652 9.69852 2 9.84745 2 10V16.25C2 16.6642 2.33579 17 2.75 17H4.00947C4.13713 18.6781 5.53919 20 7.25 20C8.96081 20 10.3629 18.6781 10.4905 17H13.5095C13.6371 18.6781 15.0392 20 16.75 20C18.4608 20 19.8629 18.6781 19.9905 17H21.25C21.6642 17 22 16.6642 22 16.25V4.75C22 4.33579 21.6642 4 21.25 4H8.75ZM8 7.5H5.39296L3.5 10.2343V15.5H4.24908C4.73886 14.3255 5.89803 13.5 7.25 13.5C7.50813 13.5 7.75924 13.5301 8 13.587V7.5ZM18.1057 15.6433C18.178 15.8563 18.2852 16.0531 18.4205 16.227C18.4722 16.3922 18.5 16.5678 18.5 16.75C18.5 17.7165 17.7165 18.5 16.75 18.5C15.7835 18.5 15 17.7165 15 16.75C15 15.7835 15.7835 15 16.75 15C17.2967 15 17.7848 15.2507 18.1057 15.6433ZM7.25 15C6.2835 15 5.5 15.7835 5.5 16.75C5.5 17.7165 6.2835 18.5 7.25 18.5C8.2165 18.5 9 17.7165 9 16.75C9 15.7835 8.2165 15 7.25 15Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTruck;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAugC,EAAvgC,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,04BAA04B,KAAK,eAAc,CAAI,GAGjgC",
  "debugId": "44FC4BAF40E6615C64756E2164756E21",
  "names": []
}