{
  "version": 3,
  "sources": ["src/IconSubscriptionTick1/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 IconSubscriptionTick1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconSubscriptionTick1\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.8291 2.53444C11.4482 1.82185 12.5546 1.82185 13.1737 2.53444L14.6417 4.22396C14.7668 4.36799 14.9574 4.43734 15.1458 4.40745L17.3564 4.05679C18.2887 3.90889 19.1362 4.62008 19.1525 5.56392L19.191 7.80177C19.1943 7.99253 19.2957 8.16814 19.4593 8.26637L21.378 9.41865C22.1873 9.90464 22.3794 10.9942 21.7852 11.7277L20.3762 13.4668C20.2561 13.615 20.2209 13.8147 20.2831 13.9951L21.0123 16.1111C21.3198 17.0036 20.7666 17.9618 19.8399 18.1417L17.6428 18.5682C17.4555 18.6046 17.3001 18.7349 17.2318 18.9131L16.4302 21.0028C16.0921 21.8842 15.0524 22.2626 14.2269 21.8047L12.2696 20.7192C12.1028 20.6266 11.9 20.6266 11.7332 20.7192L9.77587 21.8047C8.95035 22.2626 7.91067 21.8841 7.57259 21.0028L6.771 18.9131C6.70267 18.7349 6.54734 18.6046 6.36004 18.5682L4.16288 18.1417C3.2362 17.9618 2.683 17.0036 2.99054 16.1111L3.71973 13.9951C3.78189 13.8147 3.74668 13.615 3.62657 13.4668L2.21762 11.7277C1.62338 10.9942 1.8155 9.90464 2.62477 9.41865L4.54354 8.26637C4.70711 8.16814 4.8085 7.99254 4.81178 7.80177L4.8503 5.56392C4.86655 4.62008 5.71411 3.90889 6.64643 4.05679L8.85697 4.40745C9.04541 4.43734 9.23595 4.36799 9.36109 4.22396L10.8291 2.53444ZM14.855 11.1036C15.0502 10.9083 15.0502 10.5917 14.855 10.3964C14.6597 10.2012 14.3431 10.2012 14.1479 10.3964L11.0014 13.5429L9.85496 12.3964C9.6597 12.2012 9.34311 12.2012 9.14785 12.3964C8.95259 12.5917 8.95259 12.9083 9.14785 13.1036L10.6479 14.6036C10.7416 14.6973 10.8688 14.75 11.0014 14.75C11.134 14.75 11.2612 14.6973 11.355 14.6036L14.855 11.1036Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSubscriptionTick1;\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,EAA0E,EAAM,KAAK,CAAC,IAC1F,gBAAyoD,EAAzoD,IAAqB,EAAO,OAAO,wDAAuD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0+CAA0+C,KAAK,eAAc,CAAI,CACjpD,EAEc",
  "debugId": "DDBD892358926E8B64756E2164756E21",
  "names": []
}