{
  "version": 3,
  "sources": ["src/IconBrokenChainLink1/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 IconBrokenChainLink1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconBrokenChainLink1\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.5 1C8.77614 1 9 1.22386 9 1.5V3.5C9 3.77614 8.77614 4 8.5 4C8.22386 4 8 3.77614 8 3.5V1.5C8 1.22386 8.22386 1 8.5 1ZM2.64645 2.64645C2.84171 2.45118 3.15829 2.45118 3.35355 2.64645L5.35355 4.64645C5.54882 4.84171 5.54882 5.15829 5.35355 5.35355C5.15829 5.54882 4.84171 5.54882 4.64645 5.35355L2.64645 3.35355C2.45118 3.15829 2.45118 2.84171 2.64645 2.64645ZM12.7322 3.56066C13.7085 2.58435 15.2915 2.58435 16.2678 3.56066L20.4393 7.73223C21.4156 8.70854 21.4157 10.2915 20.4393 11.2678L17.8536 13.8536C17.6583 14.0488 17.3417 14.0488 17.1464 13.8536C16.9512 13.6583 16.9512 13.3417 17.1464 13.1464L19.7322 10.5607C20.318 9.97487 20.318 9.02513 19.7322 8.43934L15.5607 4.26777C14.9749 3.68198 14.0251 3.68198 13.4393 4.26777L10.8536 6.85355C10.6583 7.04882 10.3417 7.04882 10.1464 6.85355C9.95118 6.65829 9.95118 6.34171 10.1464 6.14645L12.7322 3.56066ZM1 8.5C1 8.22386 1.22386 8 1.5 8H3.5C3.77614 8 4 8.22386 4 8.5C4 8.77614 3.77614 9 3.5 9H1.5C1.22386 9 1 8.77614 1 8.5ZM6.85355 10.1464C7.04882 10.3417 7.04882 10.6583 6.85355 10.8536L4.26777 13.4393C3.68198 14.0251 3.68198 14.9749 4.26777 15.5607L8.43934 19.7322C9.02513 20.318 9.97487 20.318 10.5607 19.7322L13.1464 17.1464C13.3417 16.9512 13.6583 16.9512 13.8536 17.1464C14.0488 17.3417 14.0488 17.6583 13.8536 17.8536L11.2678 20.4393C10.2915 21.4156 8.70855 21.4157 7.73223 20.4393L3.56066 16.2678C2.58435 15.2915 2.58435 13.7085 3.56066 12.7322L6.14645 10.1464C6.34171 9.95118 6.65829 9.95118 6.85355 10.1464ZM20 15.5C20 15.2239 20.2239 15 20.5 15H22.5C22.7761 15 23 15.2239 23 15.5C23 15.7761 22.7761 16 22.5 16H20.5C20.2239 16 20 15.7761 20 15.5ZM18.6464 18.6464C18.8417 18.4512 19.1583 18.4512 19.3536 18.6464L21.3536 20.6464C21.5488 20.8417 21.5488 21.1583 21.3536 21.3536C21.1583 21.5488 20.8417 21.5488 20.6464 21.3536L18.6464 19.3536C18.4512 19.1583 18.4512 18.8417 18.6464 18.6464ZM15.5 20C15.7761 20 16 20.2239 16 20.5V22.5C16 22.7761 15.7761 23 15.5 23C15.2239 23 15 22.7761 15 22.5V20.5C15 20.2239 15.2239 20 15.5 20Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBrokenChainLink1;\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,gBAAqmE,EAArmE,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,u8DAAu8D,KAAK,eAAc,CAAI,CAC7mE,EAEc",
  "debugId": "71CEFEC3C2D5EC0F64756E2164756E21",
  "names": []
}