{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAvocado/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 IconAvocado: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconAvocado\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.61602 19.3973C7.56446 22.3528 12.6066 22.0758 15.4583 19.1324C17.4106 17.1172 19.3964 13.942 20.529 10.9047C21.0953 9.38606 21.4485 7.90156 21.4774 6.61357C21.5063 5.32418 21.2102 4.23297 20.4797 3.50119C19.7495 2.76981 18.661 2.47319 17.3743 2.50189C16.0887 2.53057 14.6063 2.88404 13.0893 3.45178C10.0552 4.58725 6.88208 6.57986 4.86608 8.54561C1.92743 11.411 1.59284 16.4608 4.61602 19.3973Z\" stroke=\"currentColor\" strokeWidth=\"1.13511\" strokeLinecap=\"square\"/><Path d=\"M13.1035 14.375C13.1035 16.308 11.5365 17.875 9.60352 17.875C7.67052 17.875 6.10352 16.308 6.10352 14.375C6.10352 12.442 7.67052 10.875 9.60352 10.875C11.5365 10.875 13.1035 12.442 13.1035 14.375Z\" stroke=\"currentColor\" strokeWidth=\"1.13511\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconAvocado;\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,gBAA02B,EAA12B,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gZAAgZ,OAAO,eAAe,YAAY,UAAU,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,uMAAuM,OAAO,eAAe,YAAY,UAAU,cAAc,SAAQ,CAAI,EACl3B,EAEc",
  "debugId": "02C5BEBC4E69D14564756E2164756E21",
  "names": []
}