{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFoodExperiences/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 IconFoodExperiences: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconFoodExperiences\"><Path d=\"M14.0044 6.00463L15.9997 2.01392L17.9951 6.00463L21.9858 7.99998L17.9951 9.99534L15.9997 13.9861L14.0044 9.99534L10.0137 7.99998L14.0044 6.00463Z\" fill=\"currentColor\"/><Path d=\"M9.49976 3C8.67133 3 7.99976 3.67157 7.99976 4.5C7.99976 5.32843 8.67133 6 9.49976 6C10.3282 6 10.9998 5.32843 10.9998 4.5C10.9998 3.67157 10.3282 3 9.49976 3Z\" fill=\"currentColor\"/><Path d=\"M5.99974 6.51392L4.83772 8.83796L2.51367 9.99998L4.83772 11.162L5.99974 13.4861L7.16176 11.162L9.48581 9.99998L7.16176 8.83796L5.99974 6.51392Z\" fill=\"currentColor\"/><Path d=\"M2.99976 15V16.4114C4.40131 18.3392 6.71546 19.3281 8.99976 19.7435V21H14.9998V19.7435C17.2551 19.3334 19.6407 18.3504 20.9998 16.4114V15H2.99976Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFoodExperiences;\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,EAAwE,EAAM,KAAK,CAAC,IAAU,CACzG,OAAO,gBAA4yB,EAA5yB,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,EAAE,oJAAoJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kKAAkK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kJAAkJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,CAAI,EACpzB,EAEc",
  "debugId": "40D7D15365B3A79264756E2164756E21",
  "names": []
}