{
  "version": 3,
  "sources": ["src/IconCereals/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 IconCereals: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconCereals\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16.8317 5.27239C16.3316 5.77254 16.0205 6.58829 16.0632 7.82422C16.0653 7.88577 16.1143 7.93476 16.1758 7.93688C17.4117 7.97952 18.2275 7.66847 18.7276 7.16832C19.2277 6.66817 19.5388 5.85242 19.4962 4.61648C19.494 4.55494 19.445 4.50595 19.3835 4.50382C18.1476 4.46119 17.3319 4.77224 16.8317 5.27239ZM15.771 4.21174C16.6592 3.32359 17.9385 2.95308 19.4352 3.00472C20.2846 3.03402 20.966 3.71539 20.9953 4.56476C21.0469 6.06153 20.6764 7.34083 19.7883 8.22897C19.3795 8.63777 18.8878 8.9369 18.3302 9.13567L19.5378 9.90774C20.4798 10.51 20.6232 11.829 19.8326 12.6196L19.2426 13.2096C18.6127 13.8395 17.8103 14.214 16.9751 14.318C17.1027 14.8791 16.9547 15.4973 16.5064 15.9456L15.9164 16.5357C15.2866 17.1655 14.4842 17.54 13.649 17.644C13.7767 18.2051 13.6287 18.8234 13.1804 19.2717L12.5904 19.8617C11.3003 21.1518 9.28656 21.3707 7.74946 20.388C7.74945 20.388 7.74945 20.388 7.74944 20.388L5.87257 19.188L4.45107 20.6096C4.15818 20.9025 3.68331 20.9025 3.39041 20.6096C3.09752 20.3167 3.09752 19.8418 3.39041 19.5489L4.81191 18.1274L3.61202 16.2506C2.62928 14.7135 2.84818 12.6997 4.13822 11.4096L4.72824 10.8196C5.17658 10.3713 5.79488 10.2233 6.35602 10.351C6.46001 9.51582 6.83452 8.71343 7.46438 8.08357L8.05439 7.49355C8.50273 7.04521 9.12103 6.89724 9.68218 7.02495C9.78616 6.18975 10.1607 5.38737 10.7905 4.75751L11.3805 4.16749C12.1711 3.37691 13.4902 3.52029 14.0924 4.46227L14.8644 5.66972C15.0631 5.11216 15.3623 4.62052 15.771 4.21174ZM10.034 12.9054C10.8261 12.1133 10.9605 10.8768 10.3571 9.93306L9.50247 8.59632C9.41643 8.46175 9.228 8.44127 9.11506 8.55421L8.52504 9.14423C7.73297 9.93631 7.59856 11.1728 8.20195 12.1166L9.22409 13.7153L10.034 12.9054ZM6.70785 16.2315C7.49993 15.4394 7.63433 14.2029 7.03094 13.2591L6.17631 11.9224C6.09028 11.7878 5.90184 11.7673 5.7889 11.8803L5.19889 12.4703C4.40681 13.2624 4.27241 14.4988 4.8758 15.4426L5.89794 17.0414L6.70785 16.2315ZM6.95861 18.102L8.55743 19.1242L8.55744 19.1242C9.5012 19.7276 10.7376 19.5932 11.5297 18.8011L12.1197 18.211C12.2327 18.0981 12.2122 17.9097 12.0776 17.8236L10.7409 16.969C9.79714 16.3656 8.5606 16.5 7.76852 17.2921L6.95861 18.102ZM10.2847 14.776L11.8835 15.7981C12.8272 16.4015 14.0637 16.2671 14.8557 15.475L15.4458 14.885C15.5587 14.772 15.5382 14.5836 15.4037 14.4976L14.0669 13.6429C13.1232 13.0395 11.8868 13.174 11.0947 13.966L10.2847 14.776ZM13.6109 11.4499L15.2096 12.472C16.1534 13.0754 17.3898 12.941 18.1819 12.149L18.7719 11.5589C18.8849 11.446 18.8644 11.2575 18.7298 11.1715L17.3931 10.3169C16.4493 9.71348 15.2129 9.84789 14.4208 10.64L13.6109 11.4499ZM13.3602 9.57933C14.1522 8.78724 14.2866 7.55077 13.6832 6.607L12.8286 5.27026C12.7426 5.13569 12.5541 5.1152 12.4412 5.22814L11.8512 5.81817C11.0591 6.61025 10.9247 7.84672 11.5281 8.7905L12.5502 10.3892L13.3602 9.57933Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCereals;\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,EAAgE,EAAM,KAAK,CAAC,IAChF,gBAA23F,EAA33F,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,suFAAsuF,KAAK,eAAc,CAAI,CACn4F,EAEc",
  "debugId": "475B5343F5F861E764756E2164756E21",
  "names": []
}