{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPeopleLike/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 IconPeopleLike: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPeopleLike\"><Path d=\"M12 2C9.51472 2 7.5 4.01472 7.5 6.5C7.5 8.98528 9.51472 11 12 11C14.4853 11 16.5 8.98528 16.5 6.5C16.5 4.01472 14.4853 2 12 2Z\" fill=\"currentColor\"/><Path d=\"M3.50515 19.9064C3.91741 15.5211 7.24298 12 12.0008 12C13.2093 12 14.3255 12.2272 15.325 12.6381C14.5091 12.8598 13.7433 13.3045 13.1253 13.9637C12.1879 14.9636 11.7494 16.2778 11.7494 17.6412C11.7494 19.0179 12.2988 20.1446 12.9434 21H3.40234L3.50515 19.9064Z\" fill=\"currentColor\"/><Path d=\"M17.0367 21.9558C16.6973 21.7817 16.2389 21.5196 15.7744 21.1701C14.8918 20.506 13.75 19.3434 13.75 17.6901C13.75 16.4682 14.3697 15.4342 15.3154 14.8935C16.1106 14.4388 17.0852 14.3629 18.0013 14.7459C18.9174 14.3629 19.892 14.4388 20.6872 14.8935C21.6329 15.4342 22.2526 16.4682 22.2526 17.6901C22.2526 19.3434 21.1108 20.506 20.2282 21.1701C19.7637 21.5196 19.3053 21.7817 18.966 21.9558L18.0013 22.3774C17.6713 22.2474 17.3537 22.1186 17.0367 21.9558Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPeopleLike;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAA+/B,EAA//B,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,iIAAiI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uQAAuQ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0cAA0c,KAAK,eAAc,CAAI,EACvgC,EAEc",
  "debugId": "C10C40E2BDE6177D64756E2164756E21",
  "names": []
}