{
  "version": 3,
  "sources": ["src/IconPizza/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 IconPizza: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconPizza\"><Path d=\"M12.974 4.2828L14.3958 4.03906C15.3108 4.22273 16 5.03083 16 5.99991C16 7.10448 15.1046 7.99991 14 7.99991C12.8954 7.99991 12 7.10448 12 5.99991C12 5.27042 12.3906 4.63216 12.974 4.2828Z\" fill=\"currentColor\"/><Path d=\"M16.9991 5.99998C16.9991 5.11159 16.6129 4.3134 15.9993 3.76408L17.6277 3.48493C19.328 3.19344 20.8056 4.67104 20.5141 6.3714L19.3872 12.9453C18.6793 11.8202 17.4265 11.0726 15.9991 11.0726C13.8137 11.0726 12.0376 12.8252 11.9997 15.0015C8.97401 12.7291 6.83561 9.33914 6.19727 5.44443L11.3677 4.55807C11.1327 4.98596 10.9991 5.47737 10.9991 5.99998C10.9991 7.65684 12.3422 8.99998 13.9991 8.99998C15.6559 8.99998 16.9991 7.65684 16.9991 5.99998Z\" fill=\"currentColor\"/><Path d=\"M12.8164 15.5725C14.3355 16.5634 16.0453 17.2865 17.8788 17.6746L17.7591 17.5541L18.114 17.2018C18.4672 16.8513 18.7334 16.4141 18.878 15.9248L18.9964 15.234C18.9993 15.1806 19.0007 15.1267 19.0007 15.0725C19.0007 13.4157 17.6576 12.0725 16.0007 12.0725C14.3438 12.0725 13.0007 13.4157 13.0007 15.0725V15.5725H12.8164Z\" fill=\"currentColor\"/><Path d=\"M18.3866 18.7877C11.6436 17.6799 6.32021 12.3565 5.21239 5.61353L4.41364 5.75045C3.05626 5.98315 2.07996 7.30805 2.4982 8.6991C3.37954 11.6304 4.97832 14.392 7.29322 16.7069C9.60812 19.0218 12.3697 20.6205 15.301 21.5019C16.692 21.9201 18.0169 20.9438 18.2496 19.5864L18.3866 18.7877Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPizza;\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,EAA8D,EAAM,KAAK,CAAC,IAC9E,gBAAk6C,EAAl6C,IAAqB,EAAO,OAAO,4CAA2C,gBAAC,EAAD,CAAM,EAAE,6LAA6L,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,icAAic,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iUAAiU,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+RAA+R,KAAK,eAAc,CAAI,CAC16C,EAEc",
  "debugId": "FE964260549D4EAB64756E2164756E21",
  "names": []
}