{
  "version": 3,
  "sources": ["src/IconFoodExperiences/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "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=\"round-filled-radius-2-stroke-1-IconFoodExperiences\"><Path d=\"M9.49959 3C8.67116 3 7.99959 3.67157 7.99959 4.5C7.99959 5.32843 8.67116 6 9.49959 6C10.328 6 10.9996 5.32843 10.9996 4.5C10.9996 3.67157 10.328 3 9.49959 3Z\" fill=\"currentColor\"/><Path d=\"M16.4468 3.27639C16.3621 3.107 16.189 3 15.9996 3C15.8102 3 15.6371 3.107 15.5524 3.27639L14.1269 6.12732L11.276 7.55279C11.1066 7.63748 10.9996 7.81061 10.9996 8C10.9996 8.18939 11.1066 8.36252 11.276 8.44721L14.1269 9.87268L15.5524 12.7236C15.6371 12.893 15.8102 13 15.9996 13C16.189 13 16.3621 12.893 16.4468 12.7236L17.8723 9.87268L20.7232 8.44721C20.8926 8.36252 20.9996 8.18939 20.9996 8C20.9996 7.81061 20.8926 7.63748 20.7232 7.55279L17.8723 6.12732L16.4468 3.27639Z\" fill=\"currentColor\"/><Path d=\"M6.9468 7.52639C6.86211 7.357 6.68897 7.25 6.49959 7.25C6.3102 7.25 6.13707 7.357 6.05237 7.52639L5.21024 9.21066L3.52598 10.0528C3.35659 10.1375 3.24959 10.3106 3.24959 10.5C3.24959 10.6894 3.35659 10.8625 3.52598 10.9472L5.21024 11.7893L6.05237 13.4736C6.13707 13.643 6.3102 13.75 6.49959 13.75C6.68897 13.75 6.86211 13.643 6.9468 13.4736L7.78893 11.7893L9.4732 10.9472C9.64259 10.8625 9.74959 10.6894 9.74959 10.5C9.74959 10.3106 9.64259 10.1375 9.47319 10.0528L7.78893 9.21066L6.9468 7.52639Z\" fill=\"currentColor\"/><Path d=\"M4.4115 15C3.82293 15 3.33418 15.3195 3.12075 15.7908C2.90139 16.2751 3.00312 16.8578 3.46242 17.2707C4.60857 18.3011 6.48788 19.5992 9.11025 20.1863C9.04103 20.272 8.99959 20.3812 8.99959 20.5C8.99959 20.7761 9.22345 21 9.49959 21H14.4996C14.7757 21 14.9996 20.7761 14.9996 20.5C14.9996 20.3812 14.9581 20.272 14.8889 20.1863C17.5113 19.5992 19.3906 18.3011 20.5367 17.2707C20.996 16.8578 21.0978 16.2751 20.8784 15.7908C20.665 15.3195 20.1762 15 19.5877 15H4.4115Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFoodExperiences;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAAwE,EAAM,KAAK,CAAC,IACxF,gBAAmxD,EAAnxD,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,EAAE,gKAAgK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6dAA6d,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mfAAmf,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qdAAqd,KAAK,eAAc,CAAI,CAC3xD,EAEc",
  "debugId": "EAA302247E3E879764756E2164756E21",
  "names": []
}