{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWheelchair/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 IconWheelchair: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconWheelchair\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.5 5C10.5 3.34315 11.8431 2 13.5 2C15.1569 2 16.5 3.34315 16.5 5C16.5 6.65685 15.1569 8 13.5 8C11.8431 8 10.5 6.65685 10.5 5ZM13.5 4C12.9477 4 12.5 4.44772 12.5 5C12.5 5.55228 12.9477 6 13.5 6C14.0523 6 14.5 5.55228 14.5 5C14.5 4.44772 14.0523 4 13.5 4Z\" fill=\"currentColor\"/><Path d=\"M13.3265 9.59805L11.4255 8.97655L10.7639 11H10.75V11.0426L10.1766 12.7964L10.1735 12.8067C9.54044 14.8939 11.1024 17 13.2836 17H17.7192L16.7873 20.7276L18.7276 21.2127L20.2807 15H13.2836C12.4478 15 11.8483 14.1959 12.0848 13.396L12.2142 13H17V11H12.8681L13.3265 9.59805Z\" fill=\"currentColor\"/><Path d=\"M10 22C12.1729 22 14.076 20.8449 15.1288 19.1154L15.1577 18.9999H13.2837C9.76024 18.9999 7.237 15.5979 8.25965 12.2261L8.26901 12.1953L8.95721 10.0903C6.14058 10.5839 4 13.0419 4 16C4 19.3137 6.68629 22 10 22Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWheelchair;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAA27B,EAA37B,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mQAAmQ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iRAAiR,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,CAAI,EACn8B,EAEc",
  "debugId": "9B08499453BBBE4864756E2164756E21",
  "names": []
}