{
  "version": 3,
  "sources": ["src/IconBrokenChainLink3/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 IconBrokenChainLink3: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconBrokenChainLink3\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.2765 1.0529C5.52349 0.929401 5.82383 1.02951 5.94732 1.2765L6.94732 3.2765C7.07082 3.52349 6.97071 3.82383 6.72372 3.94732C6.47673 4.07082 6.17639 3.97071 6.0529 3.72372L5.0529 1.72372C4.9294 1.47673 5.02951 1.17639 5.2765 1.0529ZM19.2905 4.70972C17.011 2.43024 13.3152 2.43024 11.0357 4.70972L9.6405 6.10497C9.44524 6.30023 9.12866 6.30023 8.93339 6.10497C8.73813 5.90971 8.73813 5.59312 8.93339 5.39786L10.3286 4.00262C12.9986 1.33261 17.3276 1.33261 19.9976 4.00262C22.6676 6.67263 22.6676 11.0016 19.9976 13.6716L18.6024 15.0668C18.4071 15.2621 18.0905 15.2621 17.8953 15.0668C17.7 14.8716 17.7 14.555 17.8953 14.3597L19.2905 12.9645C21.57 10.685 21.57 6.98921 19.2905 4.70972ZM1.0529 5.2765C1.17639 5.02951 1.47673 4.9294 1.72372 5.0529L3.72372 6.0529C3.97071 6.17639 4.07082 6.47673 3.94732 6.72372C3.82383 6.97071 3.52349 7.07082 3.2765 6.94732L1.2765 5.94732C1.02951 5.82383 0.929401 5.52349 1.0529 5.2765ZM6.10497 8.93339C6.30023 9.12866 6.30023 9.44524 6.10497 9.6405L4.70972 11.0357C2.43024 13.3152 2.43024 17.011 4.70973 19.2905C6.98921 21.57 10.685 21.57 12.9645 19.2905L14.3597 17.8953C14.555 17.7 14.8716 17.7 15.0668 17.8953C15.2621 18.0905 15.2621 18.4071 15.0668 18.6024L13.6716 19.9976C11.0016 22.6676 6.67263 22.6676 4.00262 19.9976C1.33261 17.3276 1.33261 12.9987 4.00262 10.3286L5.39786 8.93339C5.59312 8.73813 5.90971 8.73813 6.10497 8.93339ZM20.0529 17.2765C20.1764 17.0295 20.4767 16.9294 20.7237 17.0529L22.7237 18.0529C22.9707 18.1764 23.0708 18.4767 22.9473 18.7237C22.8238 18.9707 22.5235 19.0708 22.2765 18.9473L20.2765 17.9473C20.0295 17.8238 19.9294 17.5235 20.0529 17.2765ZM17.2765 20.0529C17.5235 19.9294 17.8238 20.0295 17.9473 20.2765L18.9473 22.2765C19.0708 22.5235 18.9707 22.8238 18.7237 22.9473C18.4767 23.0708 18.1764 22.9707 18.0529 22.7237L17.0529 20.7237C16.9294 20.4767 17.0295 20.1764 17.2765 20.0529Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBrokenChainLink3;\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,EAAyE,EAAM,KAAK,CAAC,IACzF,gBAA29D,EAA39D,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6zDAA6zD,KAAK,eAAc,CAAI,CACn+D,EAEc",
  "debugId": "F65AA1955719842764756E2164756E21",
  "names": []
}