{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCar4Ev/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\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    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCar4Ev: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconCar4Ev\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13.5008 4L3.15365 4.00001L0.820312 18H3.83755C4.39928 19.1825 5.60453 20 7.00073 20C8.39693 20 9.60219 19.1825 10.1639 18H13.8375C14.3993 19.1825 15.6045 20 17.0007 20C18.3969 20 19.6022 19.1825 20.1639 18H23.0008V9.15287L16.5604 8.07947L13.5008 4ZM5.50073 16.5C5.50073 15.6716 6.17231 15 7.00073 15C7.82916 15 8.50073 15.6716 8.50073 16.5C8.50073 17.3284 7.82916 18 7.00073 18C6.17231 18 5.50073 17.3284 5.50073 16.5ZM15.5007 16.5C15.5007 15.6716 16.1723 15 17.0007 15C17.8292 15 18.5007 15.6716 18.5007 16.5C18.5007 17.3284 17.8292 18 17.0007 18C16.1723 18 15.5007 17.3284 15.5007 16.5ZM11.9174 10H14.5008L10.6674 15L11.0841 12H8.50073L12.3341 7L11.9174 10Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCar4Ev;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA4yB,EAA5yB,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,upBAAupB,KAAK,eAAc,CAAI,EACpzB,EAEc",
  "debugId": "BAA47039D81D6C2664756E2164756E21",
  "names": []
}