{
  "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.5-IconBookmarkCheck\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.91957 2H16.0804C16.6146 1.99999 17.0604 1.99998 17.4247 2.02974C17.8046 2.06078 18.1612 2.12789 18.4985 2.29973C19.0159 2.56338 19.4366 2.98408 19.7003 3.50153C19.8721 3.83879 19.9392 4.19545 19.9703 4.57533C20 4.93953 20 5.38537 20 5.91946V18.9878C20 19.4516 20 19.8507 19.9712 20.1656C19.9425 20.4798 19.8767 20.849 19.6406 21.158C19.3277 21.5676 18.85 21.8185 18.335 21.8435C17.9467 21.8624 17.6054 21.7069 17.3304 21.5523C17.0549 21.3972 16.7264 21.1706 16.3445 20.9073L13.391 18.8703C12.6855 18.3838 12.4891 18.2626 12.299 18.2158C12.1026 18.1674 11.8974 18.1674 11.7011 18.2158C11.511 18.2626 11.3145 18.3838 10.6091 18.8703L7.6555 20.9073C7.27366 21.1706 6.94516 21.3972 6.66956 21.5523C6.3946 21.707 6.0533 21.8624 5.66496 21.8435C5.15002 21.8185 4.67233 21.5676 4.35936 21.158C4.12334 20.849 4.05755 20.4798 4.02879 20.1656C3.99997 19.8507 3.99998 19.4517 4 18.9878V5.91957C3.99999 5.38544 3.99998 4.93955 4.02974 4.57533C4.06078 4.19545 4.12789 3.83879 4.29973 3.50153C4.56339 2.98408 4.98408 2.56338 5.50153 2.29973C5.83879 2.12789 6.19545 2.06078 6.57533 2.02974C6.93956 1.99998 7.38542 1.99999 7.91957 2ZM15.3803 8.68033C15.6732 8.38744 15.6732 7.91256 15.3803 7.61967C15.0874 7.32678 14.6126 7.32678 14.3197 7.61967L11 10.9393L9.88033 9.81967C9.58744 9.52677 9.11256 9.52677 8.81967 9.81967C8.52678 10.1126 8.52678 10.5874 8.81967 10.8803L10.4697 12.5303C10.6103 12.671 10.8011 12.75 11 12.75C11.1989 12.75 11.3897 12.671 11.5303 12.5303L15.3803 8.68033Z\" 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,gBAA+lD,EAA/lD,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,k8CAAk8C,KAAK,eAAc,CAAI,CACvmD,EAEc",
  "debugId": "6EFA0ACD2EBAF9BE64756E2164756E21",
  "names": []
}