{
  "version": 3,
  "sources": ["src/IconLiveFull/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 IconLiveFull: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconLiveFull\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.63604 4.92916C5.8313 5.12442 5.8313 5.44101 5.63604 5.63627C2.12132 9.15099 2.12132 14.8495 5.63604 18.3642C5.8313 18.5595 5.8313 18.876 5.63604 19.0713C5.44078 19.2666 5.12419 19.2666 4.92893 19.0713C1.02369 15.1661 1.02369 8.8344 4.92893 4.92916C5.12419 4.7339 5.44078 4.7339 5.63604 4.92916ZM18.364 4.92916C18.5592 4.7339 18.8758 4.7339 19.0711 4.92916C22.9763 8.8344 22.9763 15.1661 19.0711 19.0713C18.8758 19.2666 18.5592 19.2666 18.364 19.0713C18.1687 18.876 18.1687 18.5595 18.364 18.3642C21.8787 14.8495 21.8787 9.15099 18.364 5.63627C18.1687 5.44101 18.1687 5.12442 18.364 4.92916ZM8.46447 7.75759C8.65973 7.95285 8.65973 8.26943 8.46447 8.4647C6.51184 10.4173 6.51184 13.5831 8.46447 15.5358C8.65973 15.731 8.65973 16.0476 8.46447 16.2429C8.2692 16.4381 7.95262 16.4381 7.75736 16.2429C5.41421 13.8997 5.41421 10.1007 7.75736 7.75759C7.95262 7.56233 8.2692 7.56233 8.46447 7.75759ZM15.5355 7.75759C15.7308 7.56233 16.0474 7.56233 16.2426 7.75759C18.5858 10.1007 18.5858 13.8997 16.2426 16.2429C16.0474 16.4381 15.7308 16.4381 15.5355 16.2429C15.3403 16.0476 15.3403 15.731 15.5355 15.5358C17.4882 13.5831 17.4882 10.4173 15.5355 8.4647C15.3403 8.26943 15.3403 7.95285 15.5355 7.75759ZM12 11.0002C11.4477 11.0002 11 11.4479 11 12.0002C11 12.5525 11.4477 13.0002 12 13.0002C12.5523 13.0002 13 12.5525 13 12.0002C13 11.4479 12.5523 11.0002 12 11.0002ZM10 12.0002C10 10.8957 10.8954 10.0002 12 10.0002C13.1046 10.0002 14 10.8957 14 12.0002C14 13.1048 13.1046 14.0002 12 14.0002C10.8954 14.0002 10 13.1048 10 12.0002Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconLiveFull;\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,EAAiE,EAAM,KAAK,CAAC,IACjF,gBAA8oD,EAA9oD,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,w/CAAw/C,KAAK,eAAc,CAAI,CACtpD,EAEc",
  "debugId": "2BF5E04FC0280D0864756E2164756E21",
  "names": []
}