{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTeam/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 IconTeam: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconTeam\"><Path d=\"M12 12C15.3137 12 18 14.6863 18 18V20H6V18C6 14.6863 8.68629 12 12 12Z\" fill=\"currentColor\"/><Path d=\"M5.75684 13C4.65841 14.3698 4 16.1076 4 18V19H0V18C0 15.2386 2.23858 13 5 13H5.75684Z\" fill=\"currentColor\"/><Path d=\"M19 13C21.7614 13 24 15.2386 24 18V19H20V18C20 16.1076 19.3416 14.3698 18.2432 13H19Z\" fill=\"currentColor\"/><Path d=\"M4.5 6.25C6.01878 6.25 7.25 7.48122 7.25 9C7.25 10.5188 6.01878 11.75 4.5 11.75C2.98122 11.75 1.75 10.5188 1.75 9C1.75 7.48122 2.98122 6.25 4.5 6.25Z\" fill=\"currentColor\"/><Path d=\"M19.5 6.25C21.0188 6.25 22.25 7.48122 22.25 9C22.25 10.5188 21.0188 11.75 19.5 11.75C17.9812 11.75 16.75 10.5188 16.75 9C16.75 7.48122 17.9812 6.25 19.5 6.25Z\" fill=\"currentColor\"/><Path d=\"M12 3.5C13.933 3.5 15.5 5.067 15.5 7C15.5 8.933 13.933 10.5 12 10.5C10.067 10.5 8.5 8.933 8.5 7C8.5 5.067 10.067 3.5 12 3.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconTeam;\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,EAA6D,EAAM,KAAK,CAAC,IAAU,CAC9F,OAAO,gBAA+6B,EAA/6B,IAAqB,EAAO,OAAO,4CAA2C,gBAAC,EAAD,CAAM,EAAE,yEAAyE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wFAAwF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wFAAwF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iKAAiK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,CAAI,EACv7B,EAEc",
  "debugId": "120E3D62CEEBEAD064756E2164756E21",
  "names": []
}