{
  "version": 3,
  "sources": ["src/IconSatellite2/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 IconSatellite2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconSatellite2\"><Path d=\"M9.01739 2.76788C8.04108 1.79157 6.45817 1.79157 5.48186 2.76788L4.01739 4.23234C3.04108 5.20866 3.04108 6.79157 4.01739 7.76788L4.24962 8.00011L9.24962 3.00011L9.01739 2.76788Z\" fill=\"currentColor\"/><Path d=\"M9.99962 3.75011L4.99962 8.75011L6.99962 10.7501L11.9996 5.75011L9.99962 3.75011Z\" fill=\"currentColor\"/><Path d=\"M18.2496 12.0001L13.2496 17.0001L15.2496 19.0001L20.2496 14.0001L18.2496 12.0001Z\" fill=\"currentColor\"/><Path d=\"M20.9996 14.7501L15.9996 19.7501L16.2319 19.9823C17.2082 20.9587 18.7911 20.9587 19.7674 19.9823L21.2319 18.5179C22.2082 17.5416 22.2082 15.9587 21.2319 14.9823L20.9996 14.7501Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.7483 16.934C11.7858 16.9125 11.8211 16.8857 11.8532 16.8537L18.439 10.2679C19.4153 9.29157 19.4153 7.70866 18.439 6.73235L17.2674 5.56077C16.2911 4.58446 14.7082 4.58446 13.7319 5.56077L7.14607 12.1466C7.11404 12.1786 7.08727 12.2139 7.06574 12.2514C5.80249 12.2225 4.53002 12.6902 3.56599 13.6542C3.47222 13.748 3.41954 13.8751 3.41954 14.0077C3.41954 14.1403 3.47222 14.2675 3.56599 14.3613L6.26378 17.0591C6.22148 17.0817 6.18175 17.1109 6.14607 17.1466L4.14607 19.1466C3.95081 19.3418 3.95081 19.6584 4.14607 19.8537C4.34133 20.0489 4.65791 20.0489 4.85318 19.8537L6.85318 17.8537C6.88885 17.818 6.91801 17.7783 6.94065 17.736L9.63836 20.4337C9.83362 20.6289 10.1502 20.6289 10.3455 20.4337C11.3095 19.4697 11.7771 18.1972 11.7483 16.934Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSatellite2;\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,EAAmE,EAAM,KAAK,CAAC,IACnF,gBAAygD,EAAzgD,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,oLAAoL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oFAAoF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oFAAoF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oLAAoL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6uBAA6uB,KAAK,eAAc,CAAI,CACjhD,EAEc",
  "debugId": "E95E25B97001836A64756E2164756E21",
  "names": []
}