{
  "version": 3,
  "sources": ["src/IconBookmarkCheck/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 IconBookmarkCheck: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconBookmarkCheck\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6.34569 2.02891C6.69963 1.99999 7.1367 2 7.6786 2H16.3214C16.8633 2 17.3004 1.99999 17.6543 2.02891C18.0187 2.05868 18.3388 2.12159 18.635 2.27248C19.1054 2.51217 19.4878 2.89462 19.7275 3.36502C19.8784 3.66117 19.9413 3.98126 19.9711 4.34569C20 4.69958 20 5.13664 20 5.67844V19.0352C20 19.4996 20 19.8828 19.9726 20.182C19.9452 20.4815 19.8848 20.7872 19.6963 21.0364C19.4317 21.3862 19.0272 21.6027 18.5894 21.6288C18.2775 21.6474 17.9896 21.5281 17.7252 21.3848C17.461 21.2416 17.1422 21.0291 16.7558 20.7715L12.6102 18.0077C12.2567 17.7721 12.1824 17.7314 12.1165 17.7156C12.0399 17.6973 11.9601 17.6973 11.8835 17.7156C11.8176 17.7314 11.7433 17.7721 11.3898 18.0077L7.24417 20.7715C6.85777 21.0291 6.53893 21.2417 6.27481 21.3848C6.01043 21.5281 5.72254 21.6474 5.4106 21.6288C4.97278 21.6027 4.56834 21.3862 4.30374 21.0364C4.1152 20.7872 4.05483 20.4815 4.0274 20.182C3.99998 19.8828 3.99999 19.4997 4 19.0352V5.6786C4 5.13671 3.99999 4.69963 4.02891 4.34569C4.05868 3.98126 4.12159 3.66117 4.27248 3.36502C4.51217 2.89462 4.89462 2.51217 5.36502 2.27248C5.66117 2.12159 5.98126 2.05868 6.34569 2.02891ZM15.5535 8.25355C15.7488 8.05829 15.7488 7.7417 15.5535 7.54644C15.3583 7.35118 15.0417 7.35118 14.8464 7.54644L11 11.3929L9.55352 9.94644C9.35826 9.75117 9.04168 9.75117 8.84641 9.94644C8.65115 10.1417 8.65115 10.4583 8.84641 10.6535L10.6464 12.4535C10.7402 12.5473 10.8674 12.6 11 12.6C11.1326 12.6 11.2598 12.5473 11.3535 12.4535L15.5535 8.25355Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBookmarkCheck;\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,EAAsE,EAAM,KAAK,CAAC,IACtF,gBAAmlD,EAAnlD,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,w7CAAw7C,KAAK,eAAc,CAAI,CAC3lD,EAEc",
  "debugId": "A5654B888D794DE764756E2164756E21",
  "names": []
}