{
  "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.5-IconBrokenChainLink1\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M9 1C9.41421 1 9.75 1.33579 9.75 1.75V3.25C9.75 3.66421 9.41421 4 9 4C8.58579 4 8.25 3.66421 8.25 3.25V1.75C8.25 1.33579 8.58579 1 9 1ZM2.71967 2.71967C3.01256 2.42678 3.48744 2.42678 3.78033 2.71967L5.28033 4.21967C5.57322 4.51256 5.57322 4.98744 5.28033 5.28033C4.98744 5.57322 4.51256 5.57322 4.21967 5.28033L2.71967 3.78033C2.42678 3.48744 2.42678 3.01256 2.71967 2.71967ZM12.5555 3.38388C13.6294 2.30994 15.3706 2.30994 16.4445 3.38388L20.6161 7.55546C21.6901 8.6294 21.6901 10.3706 20.6161 11.4445L18.2803 13.7803C17.9874 14.0732 17.5126 14.0732 17.2197 13.7803C16.9268 13.4874 16.9268 13.0126 17.2197 12.7197L19.5555 10.3839C20.0436 9.89573 20.0436 9.10427 19.5555 8.61612L15.3839 4.44454C14.8957 3.95639 14.1043 3.95639 13.6161 4.44454L11.2803 6.78033C10.9874 7.07322 10.5126 7.07322 10.2197 6.78033C9.92678 6.48744 9.92678 6.01256 10.2197 5.71967L12.5555 3.38388ZM1 9C1 8.58579 1.33579 8.25 1.75 8.25H3.25C3.66421 8.25 4 8.58579 4 9C4 9.41421 3.66421 9.75 3.25 9.75H1.75C1.33579 9.75 1 9.41421 1 9ZM6.78033 10.2197C7.07322 10.5126 7.07322 10.9874 6.78033 11.2803L4.44454 13.6161C3.95639 14.1043 3.95639 14.8957 4.44454 15.3839L8.61612 19.5555C9.10427 20.0436 9.89573 20.0436 10.3839 19.5555L12.7197 17.2197C13.0126 16.9268 13.4874 16.9268 13.7803 17.2197C14.0732 17.5126 14.0732 17.9874 13.7803 18.2803L11.4445 20.6161C10.3706 21.6901 8.6294 21.6901 7.55546 20.6161L3.38388 16.4445C2.30994 15.3706 2.30994 13.6294 3.38388 12.5555L5.71967 10.2197C6.01256 9.92678 6.48744 9.92678 6.78033 10.2197ZM20 15C20 14.5858 20.3358 14.25 20.75 14.25H22.25C22.6642 14.25 23 14.5858 23 15C23 15.4142 22.6642 15.75 22.25 15.75H20.75C20.3358 15.75 20 15.4142 20 15ZM18.7197 18.7197C19.0126 18.4268 19.4874 18.4268 19.7803 18.7197L21.2803 20.2197C21.5732 20.5126 21.5732 20.9874 21.2803 21.2803C20.9874 21.5732 20.5126 21.5732 20.2197 21.2803L18.7197 19.7803C18.4268 19.4874 18.4268 19.0126 18.7197 18.7197ZM15 20C15.4142 20 15.75 20.3358 15.75 20.75V22.25C15.75 22.6642 15.4142 23 15 23C14.5858 23 14.25 22.6642 14.25 22.25V20.75C14.25 20.3358 14.5858 20 15 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,gBAAyqE,EAAzqE,IAAqB,EAAO,OAAO,yDAAwD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ygEAAygE,KAAK,eAAc,CAAI,CACjrE,EAEc",
  "debugId": "CAA39FF578B252D764756E2164756E21",
  "names": []
}