{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBanana/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 IconBanana: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBanana\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.5518 3C18.8827 3.00011 20.0285 4.0259 20.085 5.4043C20.1284 6.46425 20.1492 7.96463 19.9912 9.13379C19.8737 10.0032 19.6081 11.0586 19.3828 11.8672C19.3115 12.1231 19.2395 12.358 19.1787 12.5615C19.8544 13.0162 20.3806 13.6409 20.7168 14.3936C21.6405 16.4614 20.9324 19.0836 18.5928 20.8057L18.3281 21H14.3818L15.1055 19.5527C15.531 18.7017 15.7345 18.0524 15.7881 17.5107C12.4068 20.049 7.87381 21.8735 3.47461 19.1543L3 18.8613V15.5596L3.95801 15.5186C6.36716 15.4169 8.30428 14.6501 9.90234 13.2539C9.35123 13.2639 8.80239 13.3293 8.24316 13.4697L7.55957 13.6416L5.68555 10.832L6.33496 10.2529C7.74701 8.99472 10.1014 7.98216 12.0898 8.08594C12.5924 8.11217 13.1029 8.21296 13.5752 8.41895L15.1729 4.58594C15.5731 3.62563 16.5114 3 17.5518 3ZM16.4385 13.7354C17.0181 14.4992 17.4514 15.2597 17.6611 16.083C17.9038 17.0356 17.8297 17.9817 17.5 19H17.6533C19.1366 17.7715 19.3467 16.2301 18.8906 15.209C18.5573 14.463 17.7634 13.7829 16.4385 13.7354ZM17.5518 5C17.3187 5 17.1082 5.14034 17.0186 5.35547L15.1387 9.86523C15.4271 10.4103 15.5763 11.0494 15.5938 11.7705C16.2029 11.7082 16.778 11.729 17.3105 11.8232C17.3552 11.6714 17.407 11.5062 17.4561 11.3301C17.6768 10.5376 17.9106 9.59247 18.0088 8.86621C18.1416 7.88354 18.1298 6.53328 18.0869 5.48633C18.0763 5.22797 17.8589 5.00011 17.5518 5ZM11.9854 10.083C10.8756 10.0252 9.44006 10.514 8.35156 11.2256L8.45898 11.3857C10.2615 11.0817 11.9541 11.3525 13.5908 11.7422C13.5657 11.1863 13.4237 10.8418 13.2686 10.6338C13.0393 10.3267 12.6362 10.117 11.9854 10.083Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBanana;\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,gBAA4oD,EAA5oD,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,u/CAAu/C,KAAK,eAAc,CAAI,EACppD,EAEc",
  "debugId": "910FFF28A95FCB2164756E2164756E21",
  "names": []
}