{
  "version": 3,
  "sources": ["src/IconUserGroup/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 IconUserGroup: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconUserGroup\"><Path d=\"M15.1073 12.3398C16.5204 13.2426 17.3547 14.7836 17.7401 16.5186C18.0392 17.8663 16.8805 19 15.4999 19H8.49986C7.11945 18.9998 5.9615 17.8661 6.26061 16.5186C6.64584 14.7841 7.47912 13.2427 8.89147 12.3398C9.72467 13.0619 10.8109 13.4999 11.9999 13.5C13.1887 13.5 14.2742 13.0616 15.1073 12.3398Z\" fill=\"currentColor\"/><Path d=\"M1.8192 12.5674C2.41745 13.0448 3.17597 13.3301 4.00084 13.3301C4.78256 13.33 5.50421 13.0729 6.08678 12.6396C6.28787 12.7881 6.46817 12.9599 6.6317 13.1484C6.03548 13.9846 5.62691 14.9504 5.369 15.9482L5.28404 16.3018C5.14587 16.9243 5.20648 17.4985 5.40611 18H2.50084C1.12026 18 -0.0601193 16.8693 0.179552 15.5098C0.399986 14.2608 0.869446 13.1874 1.8192 12.5674Z\" fill=\"currentColor\"/><Path d=\"M22.1815 12.5674C23.1311 13.1874 23.6007 14.2609 23.8212 15.5098C24.0608 16.8692 22.8803 17.9999 21.4999 18H18.5936C18.7718 17.5522 18.84 17.0466 18.7538 16.5L18.7167 16.3018C18.4693 15.1881 18.0405 14.1011 17.3827 13.1719C17.5617 12.9858 17.7542 12.8179 17.9588 12.6719C18.5334 13.0852 19.2381 13.3299 19.9999 13.3301C20.8246 13.33 21.5833 13.0447 22.1815 12.5674Z\" fill=\"currentColor\"/><Path d=\"M11.9999 5C14.0709 5 15.7499 6.67893 15.7499 8.75C15.7499 10.8211 14.0709 12.5 11.9999 12.5C9.929 12.4998 8.24986 10.8209 8.24986 8.75C8.24986 6.67908 9.929 5.00024 11.9999 5Z\" fill=\"currentColor\"/><Path d=\"M3.99986 7.33008C5.38058 7.33008 6.49986 8.44937 6.49986 9.83008C6.49986 11.2108 5.38058 12.3301 3.99986 12.3301C2.61936 12.3298 1.49986 11.2106 1.49986 9.83008C1.49986 8.44952 2.61936 7.33032 3.99986 7.33008Z\" fill=\"currentColor\"/><Path d=\"M19.9999 7.33008C21.3806 7.33008 22.4999 8.44937 22.4999 9.83008C22.4999 11.2108 21.3806 12.3301 19.9999 12.3301C18.6194 12.3298 17.4999 11.2106 17.4999 9.83008C17.4999 8.44952 18.6194 7.33032 19.9999 7.33008Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconUserGroup;\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,EAAkE,EAAM,KAAK,CAAC,IAClF,gBAAw2D,EAAx2D,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,2SAA2S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iXAAiX,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gXAAgX,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kLAAkL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,CAAI,CACh3D,EAEc",
  "debugId": "827DDB268BC6B62264756E2164756E21",
  "names": []
}