{
  "version": 3,
  "sources": ["src/IconCheeseburger/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 IconCheeseburger: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconCheeseburger\"><Path d=\"M5.67268 5.48169C7.65355 4.6599 10.0947 4.25 12 4.25C13.9053 4.25 16.3465 4.6599 18.3273 5.48169C19.3178 5.89262 20.2222 6.41837 20.8862 7.07247C21.5553 7.73167 22 8.54347 22 9.5C22 9.77614 21.7761 10 21.5 10H2.5C2.22386 10 2 9.77614 2 9.5C2 8.54347 2.44469 7.73167 3.11383 7.07247C3.77778 6.41837 4.68216 5.89262 5.67268 5.48169Z\" fill=\"currentColor\"/><Path d=\"M4.69231 12.8365C5.52923 12.4878 6.47077 12.4878 7.30769 12.8365C8.39077 13.2878 9.60923 13.2878 10.6923 12.8365C11.5292 12.4878 12.4708 12.4878 13.3077 12.8365C14.3908 13.2878 15.6092 13.2878 16.6923 12.8365C17.5292 12.4878 18.4708 12.4878 19.3077 12.8365C19.8707 13.0711 20.703 13.1749 21.2495 13.175C21.5256 13.175 21.7495 12.9512 21.7495 12.6751C21.7496 12.3989 21.5257 12.175 21.2496 12.175C20.7763 12.1749 20.089 12.0787 19.6923 11.9135C18.6092 11.4622 17.3908 11.4622 16.3077 11.9135C15.4708 12.2622 14.5292 12.2622 13.6923 11.9135C12.6092 11.4622 11.3908 11.4622 10.3077 11.9135C9.47077 12.2622 8.52923 12.2622 7.69231 11.9135C6.60923 11.4622 5.39077 11.4622 4.30769 11.9135C3.91089 12.0788 3.22337 12.175 2.75 12.175C2.47386 12.175 2.25 12.3989 2.25 12.675C2.25 12.9511 2.47386 13.175 2.75 13.175C3.29663 13.175 4.12911 13.0712 4.69231 12.8365Z\" fill=\"currentColor\"/><Path d=\"M18.341 20C18.8738 20 19.3035 20 19.6517 19.972C20.0101 19.9432 20.3252 19.8824 20.6174 19.7364C21.1017 19.4944 21.4944 19.1017 21.7364 18.6174C21.8824 18.3252 21.9432 18.0101 21.972 17.6517C22 17.3035 22 16.8738 22 16.341V15.5C22 15.2239 21.7761 15 21.5 15H2.5C2.22386 15 2 15.2239 2 15.5V16.341C1.99999 16.8738 1.99999 17.3035 2.02797 17.6517C2.05677 18.0101 2.11762 18.3252 2.26364 18.6174C2.50562 19.1017 2.89827 19.4944 3.38255 19.7364C3.67479 19.8824 3.98986 19.9432 4.34829 19.972C4.69647 20 5.12619 20 5.65896 20H18.341Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCheeseburger;\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,EAAqE,EAAM,KAAK,CAAC,IACrF,gBAAs2D,EAAt2D,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,6UAA6U,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,w1BAAw1B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mhBAAmhB,KAAK,eAAc,CAAI,CAC92D,EAEc",
  "debugId": "63CD0E28FFB3D41864756E2164756E21",
  "names": []
}