{
  "version": 3,
  "sources": ["src/IconSubscriptionTick2/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 IconSubscriptionTick2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconSubscriptionTick2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.2211 2.23686C11.2035 1.25438 12.7965 1.25438 13.7789 2.23686L14.8588 3.31676C15.1431 3.60103 15.5287 3.76073 15.9307 3.76073H17.7235C19.1129 3.76073 20.2393 4.8871 20.2393 6.27654V8.06932C20.2393 8.47133 20.399 8.85689 20.6832 9.14116L21.7631 10.2211C22.7456 11.2035 22.7456 12.7965 21.7631 13.7789L20.6832 14.8588C20.399 15.1431 20.2393 15.5287 20.2393 15.9307V17.7235C20.2393 19.1129 19.1129 20.2393 17.7235 20.2393H15.9307C15.5287 20.2393 15.1431 20.399 14.8588 20.6832L13.7789 21.7631C12.7965 22.7456 11.2035 22.7456 10.2211 21.7631L9.14116 20.6832C8.85689 20.399 8.47133 20.2393 8.06932 20.2393H6.27654C4.8871 20.2393 3.76073 19.1129 3.76073 17.7235V15.9307C3.76073 15.5287 3.60103 15.1431 3.31676 14.8588L2.23686 13.7789C1.25438 12.7965 1.25438 11.2035 2.23686 10.2211L3.31676 9.14116C3.60103 8.85689 3.76073 8.47133 3.76073 8.06932V6.27654C3.76073 4.8871 4.8871 3.76073 6.27654 3.76073H8.06932C8.47133 3.76073 8.85689 3.60103 9.14116 3.31676L10.2211 2.23686ZM15.6624 9.28265C15.8185 9.05487 15.7604 8.74366 15.5327 8.58756C15.3049 8.43145 14.9937 8.48956 14.8376 8.71735L10.7046 14.7482L8.58319 12.8522C8.3773 12.6682 8.06121 12.6859 7.8772 12.8918C7.69318 13.0977 7.71091 13.4138 7.91681 13.5978L10.4623 15.8728C10.5695 15.9686 10.7127 16.0136 10.8555 15.9964C10.9982 15.9791 11.1266 15.9013 11.2079 15.7827L15.6624 9.28265Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSubscriptionTick2;\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,gBAA09C,EAA19C,IAAqB,EAAO,OAAO,wDAAuD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2zCAA2zC,KAAK,eAAc,CAAI,CACl+C,EAEc",
  "debugId": "BE20F74F9D1D6A7B64756E2164756E21",
  "names": []
}