{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMountainBike/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 IconMountainBike: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconMountainBike\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13 4H16.744L18.55 10.02C18.6982 10.0068 18.8483 10 19 10C21.7614 10 24 12.2386 24 15C24 17.7614 21.7614 20 19 20C16.2386 20 14 17.7614 14 15C14 13.0944 15.066 11.4378 16.6342 10.594L16.4951 10.1305L9.80709 13.6199C9.93272 14.0582 10 14.5213 10 15C10 17.7614 7.76142 20 5 20C2.23858 20 0 17.7614 0 15C0 12.2386 2.23858 10 5 10C6.56617 10 7.96415 10.7201 8.88094 11.8472L9.69276 11.4237L7.125 8H6V6H11V8H9.625L11.4896 10.4862L15.9099 8.17993L15.256 6H13V4ZM7.04509 12.8051C6.50925 12.3056 5.79031 12 5 12C3.34315 12 2 13.3431 2 15C2 16.6569 3.34315 18 5 18C6.65685 18 8 16.6569 8 15C8 14.8568 7.98997 14.7159 7.97056 14.5781L4.57598 16.3492L3.65085 14.576L7.04509 12.8051ZM17.2294 12.578C16.484 13.1238 16 14.0054 16 15C16 16.6569 17.3431 18 19 18C20.6569 18 22 16.6569 22 15C22 13.3918 20.7345 12.0791 19.1451 12.0034L20.2452 15.6705L18.3295 16.2452L17.2294 12.578Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMountainBike;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAA+/B,EAA//B,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,o2BAAo2B,KAAK,eAAc,CAAI,EACvgC,EAEc",
  "debugId": "16E42ADB97C9B6D364756E2164756E21",
  "names": []
}