{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPeopleVersus/index.tsx"],
  "sourcesContent": [
    "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\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\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={maskId}\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(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPeopleVersus: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPeopleVersus\"><Path d=\"M8.92896 22.3714L16.929 2.37144L15.072 1.62866L7.07201 21.6287L8.92896 22.3714Z\" fill=\"currentColor\"/><Path d=\"M6.8533 8.50005C8.41122 8.50005 9.68592 9.17299 10.561 10.2137L8.84648 14.5001H1.76172L1.85713 13.4126C2.08935 10.766 3.9945 8.50005 6.8533 8.50005Z\" fill=\"currentColor\"/><Path d=\"M7.00052 2.00005C5.34367 2.00005 4.00052 3.3432 4.00052 5.00005C4.00052 6.65691 5.34367 8.00005 7.00052 8.00005C8.65737 8.00005 10.0005 6.65691 10.0005 5.00005C10.0005 3.3432 8.65737 2.00005 7.00052 2.00005Z\" fill=\"currentColor\"/><Path d=\"M14.0005 12.5001C14.0005 10.8432 15.3437 9.50005 17.0005 9.50005C18.6574 9.50005 20.0005 10.8432 20.0005 12.5001C20.0005 14.1569 18.6574 15.5001 17.0005 15.5001C15.3437 15.5001 14.0005 14.1569 14.0005 12.5001Z\" fill=\"currentColor\"/><Path d=\"M16.8533 16.0001C13.9945 16.0001 12.0893 18.266 11.8571 20.9126L11.7617 22.0001H21.9449L21.8495 20.9126C21.6173 18.266 19.7121 16.0001 16.8533 16.0001Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPeopleVersus;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,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,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAkhC,EAAlhC,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,kFAAkF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uJAAuJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0JAA0J,KAAK,eAAc,CAAI,EAC1hC,EAEc",
  "debugId": "8FABC9E8F516CD0564756E2164756E21",
  "names": []
}