{
  "version": 3,
  "sources": ["src/IconSubscriptionStar/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 IconSubscriptionStar: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconSubscriptionStar\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.2615 2.2359C11.2306 1.29832 12.7688 1.29832 13.7379 2.2359L14.3022 2.7818C14.6348 3.10349 15.0971 3.25372 15.5552 3.18893L16.3326 3.07897C17.6678 2.89012 18.9122 3.7942 19.1452 5.12239L19.2808 5.89571C19.3608 6.35142 19.6465 6.74474 20.0552 6.96159L20.7488 7.32957C21.94 7.96158 22.4153 9.42442 21.8231 10.6359L21.4783 11.3413C21.2751 11.7569 21.2751 12.2431 21.4783 12.6588L21.8231 13.3641C22.4153 14.5756 21.94 16.0384 20.7488 16.6704L20.0552 17.0384C19.6465 17.2553 19.3608 17.6486 19.2808 18.1043L19.1452 18.8776C18.9122 20.2058 17.6678 21.1099 16.3326 20.921L15.5552 20.8111C15.0971 20.7463 14.6348 20.8965 14.3022 21.2182L13.7379 21.7641C12.7688 22.7017 11.2306 22.7017 10.2615 21.7641L9.69717 21.2182C9.36464 20.8965 8.90226 20.7463 8.44416 20.8111L7.66677 20.921C6.33159 21.1099 5.08722 20.2058 4.85424 18.8776L4.71859 18.1043C4.63865 17.6486 4.35289 17.2553 3.94418 17.0384L3.25063 16.6704C2.05944 16.0384 1.58414 14.5756 2.17634 13.3641L2.52114 12.6588C2.72433 12.2431 2.72433 11.7569 2.52114 11.3413L2.17634 10.6359C1.58414 9.42442 2.05944 7.96158 3.25063 7.32957L3.94418 6.96159C4.35289 6.74474 4.63865 6.35142 4.71859 5.89571L4.85424 5.12239C5.08722 3.7942 6.33159 2.89012 7.66677 3.07897L8.44416 3.18893C8.90227 3.25372 9.36464 3.10349 9.69717 2.7818L10.2615 2.2359ZM12.2158 7.8709C12.1193 7.70534 11.8802 7.70534 11.7837 7.8709L10.6004 9.90249C10.5651 9.96314 10.5059 10.0062 10.4373 10.021L8.1395 10.5186C7.95224 10.5591 7.87833 10.7866 8.00599 10.9295L9.57249 12.6827C9.61925 12.735 9.64186 12.8046 9.63479 12.8744L9.39796 15.2135C9.37866 15.4042 9.57217 15.5448 9.7475 15.4675L11.8989 14.5194C11.9632 14.4911 12.0363 14.4911 12.1006 14.5194L14.252 15.4675C14.4273 15.5448 14.6209 15.4042 14.6016 15.2135L14.3647 12.8744C14.3576 12.8046 14.3803 12.735 14.427 12.6827L15.9935 10.9295C16.1212 10.7866 16.0473 10.5591 15.86 10.5186L13.5622 10.021C13.4936 10.0062 13.4344 9.96314 13.3991 9.90249L12.2158 7.8709Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSubscriptionStar;\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,EAAyE,EAAM,KAAK,CAAC,IACzF,gBAAyiE,EAAziE,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,24DAA24D,KAAK,eAAc,CAAI,CACjjE,EAEc",
  "debugId": "218CA1311C7D55AA64756E2164756E21",
  "names": []
}