{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCar2/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 IconCar2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"car-2\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.59099 5.09835C6.29425 4.39509 7.24808 4 8.24264 4H12.5C13.6803 4 14.7918 4.55573 15.5 5.5L16.9495 7.43269C17.2648 7.85304 17.7172 8.1498 18.2284 8.2715L20.1186 8.72155C21.8078 9.12376 23 10.6331 23 12.3696V15.25C23 16.7688 21.7688 18 20.25 18H20.1632C19.6015 19.1825 18.3962 20 17 20C15.6038 20 14.3985 19.1825 13.8368 18H10.1632C9.60145 19.1825 8.3962 20 7 20C5.59293 20 4.37979 19.1697 3.82381 17.9723C2.23029 17.7636 1 16.4005 1 14.75V11.2426C1 10.2481 1.39509 9.29425 2.09835 8.59099L5.59099 5.09835ZM7 14.5C5.89543 14.5 5 15.3954 5 16.5C5 17.6046 5.89543 18.5 7 18.5C8.10457 18.5 9 17.6046 9 16.5C9 15.3954 8.10457 14.5 7 14.5ZM17 14.5C15.8954 14.5 15 15.3954 15 16.5C15 17.6046 15.8954 18.5 17 18.5C18.1046 18.5 19 17.6046 19 16.5C19 15.3954 18.1046 14.5 17 14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCar2;\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,gBAA03B,EAA13B,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uwBAAuwB,KAAK,eAAc,CAAI,GAGp3B",
  "debugId": "55DED182E542BA7E64756E2164756E21",
  "names": []
}