{
  "version": 3,
  "sources": ["src/IconSignalTower/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 IconSignalTower: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconSignalTower\"><Path d=\"M19.2926 2.65768C19.1035 2.4564 18.7871 2.4465 18.5858 2.63556C18.3845 2.82463 18.3746 3.14105 18.5637 3.34233C21.812 6.80044 21.8121 12.1994 18.5641 15.6577C18.375 15.859 18.385 16.1754 18.5862 16.3645C18.7875 16.5535 19.104 16.5436 19.293 16.3423C22.9025 12.4992 22.9023 6.50063 19.2926 2.65768Z\" fill=\"currentColor\"/><Path d=\"M5.42974 3.34934C5.61859 3.14787 5.60835 2.83145 5.40688 2.6426C5.20541 2.45376 4.88899 2.46399 4.70014 2.66546C1.09767 6.50873 1.09995 12.5018 4.707 16.3423C4.89604 16.5436 5.21247 16.5535 5.41375 16.3645C5.61504 16.1754 5.62496 15.859 5.43591 15.6577C2.19009 12.2018 2.18803 6.80773 5.42974 3.34934Z\" fill=\"currentColor\"/><Path d=\"M8.07555 5.61467C8.28836 5.79064 8.31823 6.10581 8.14226 6.31862C6.61925 8.16051 6.61925 10.8396 8.14226 12.6815C8.31823 12.8943 8.28836 13.2095 8.07555 13.3855C7.86273 13.5614 7.54756 13.5316 7.37159 13.3188C5.5428 11.1071 5.5428 7.89307 7.37159 5.68138C7.54756 5.46857 7.86273 5.4387 8.07555 5.61467Z\" fill=\"currentColor\"/><Path d=\"M15.9245 5.61467C16.1373 5.4387 16.4524 5.46857 16.6284 5.68138C18.4572 7.89307 18.4572 11.1071 16.6284 13.3188C16.4524 13.5316 16.1373 13.5614 15.9245 13.3855C15.7116 13.2095 15.6818 12.8943 15.8577 12.6815C17.3808 10.8396 17.3808 8.16051 15.8577 6.31862C15.6818 6.10581 15.7116 5.79064 15.9245 5.61467Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 7.5C10.8954 7.5 10 8.39543 10 9.5C10 10.171 10.3304 10.7647 10.8374 11.1275L7.52674 20.8387C7.43764 21.1 7.57729 21.3842 7.83866 21.4733C8.10003 21.5624 8.38415 21.4227 8.47326 21.1613L9.38506 18.4867C9.42196 18.4954 9.46044 18.5 9.5 18.5H14.5C14.5396 18.5 14.578 18.4954 14.6149 18.4867L15.5267 21.1613C15.6158 21.4227 15.9 21.5624 16.1613 21.4733C16.4227 21.3842 16.5624 21.1 16.4733 20.8387L13.1626 11.1275C13.6696 10.7647 14 10.171 14 9.5C14 8.39543 13.1046 7.5 12 7.5ZM14.2786 17.5L12.2287 11.4871C12.1536 11.4956 12.0773 11.5 12 11.5C11.9227 11.5 11.8464 11.4956 11.7713 11.4871L9.72144 17.5H14.2786Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSignalTower;\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,EAAoE,EAAM,KAAK,CAAC,IACpF,gBAAkjE,EAAljE,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,4SAA4S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gTAAgT,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iTAAiT,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mTAAmT,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qmBAAqmB,KAAK,eAAc,CAAI,CAC1jE,EAEc",
  "debugId": "D7574ACC5C3F3A8364756E2164756E21",
  "names": []
}