{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSubscriptionTick2/index.tsx"],
  "sourcesContent": [
    "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\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\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={maskId}\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(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSubscriptionTick2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconSubscriptionTick2\"><G ClipPath=\"url(#clip0_9186_28738)\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.58594 4.00015L12.0002 0.585938L15.4144 4.00015H20.0002V8.58594L23.4144 12.0002L20.0002 15.4144V20.0002H15.4144L12.0002 23.4144L8.58594 20.0002H4.00015V15.4144L0.585938 12.0002L4.00015 8.58594V4.00015H8.58594ZM15.8928 9.50435L14.2544 8.35743L10.82 13.2637L8.90605 11.589L7.58904 13.0942L11.1803 16.2365L15.8928 9.50435Z\" fill=\"currentColor\"/></G><Defs><ClipPath id=\"clip0_9186_28738\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs></CentralIconBase>;\n});\n\nexport default IconSubscriptionTick2;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,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,GChDN,qBAEA,mBAAS,UAAU,OAAM,UAAG,UAAM,yBAE3B,IAAM,EAA0E,EAAM,KAAK,CAAC,IAAU,CAC3G,OAAO,gBAAgnB,EAAhnB,IAAqB,EAAO,OAAO,yDAAwD,gBAA8a,EAA9a,CAAG,SAAS,0BAAyB,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oUAAoU,KAAK,eAAc,CAAI,EAAE,gBAA8F,EAA9F,KAAM,gBAA6E,EAA7E,CAAU,GAAG,oBAAmB,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,EACxnB,EAEc",
  "debugId": "16E1F36FE00A19C064756E2164756E21",
  "names": []
}