{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBananas/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 IconBananas: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBananas\"><Path d=\"M6.94948 7.96777C7.07043 10.0793 7.59587 11.6424 8.35377 12.75C9.10764 13.8514 10.1237 14.5518 11.3255 14.8994C13.7707 15.6065 17.1066 14.8733 20.4856 12.7012L21.1194 12.2939L22.4495 13.582V13.9844C22.4494 16.0928 20.8688 18.2934 18.6467 19.7178C16.3713 21.1762 13.2442 21.9542 9.83131 21.0869C6.40541 20.216 3.89207 17.8831 2.59303 15.2666C1.36052 12.7838 1.15528 9.87538 2.54909 7.70312V3.71875L6.94948 2.8418V7.96777Z\" fill=\"currentColor\"/><Path d=\"M20.4495 8.66309V9.2666C20.4494 9.27544 20.4487 9.28754 20.4485 9.30273C20.4481 9.33341 20.4472 9.37713 20.4456 9.43164C20.4423 9.54058 20.4367 9.69515 20.4241 9.88379C20.4037 10.1897 20.3648 10.5905 20.2971 11.0381L19.6741 11.4395C16.486 13.4888 13.6078 13.9974 11.7424 13.458C10.863 13.2036 10.1416 12.7067 9.59108 11.9023C9.25449 11.4104 8.95374 10.7587 8.74147 9.91016C11.7001 11.803 15.5436 11.1118 18.3274 8.32812L18.8118 7.84375L20.4495 8.66309Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBananas;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAA2/B,EAA3/B,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,uaAAua,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,ucAAuc,KAAK,eAAc,CAAI,EACngC,EAEc",
  "debugId": "56FB94A50E47327364756E2164756E21",
  "names": []
}