{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPeopleEdit/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 IconPeopleEdit: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPeopleEdit\"><Path d=\"M14.0007 22V19.5L20.0007 13.5L22.5007 16L16.5007 22H14.0007Z\" fill=\"currentColor\"/><Path d=\"M14.0007 22V19.5L20.0007 13.5L22.5007 16L16.5007 22H14.0007Z\" fill=\"currentColor\"/><Path d=\"M17.0579 13.6142L12.0007 18.6714V21H3.40234L3.50515 19.9064C3.91741 15.5211 7.24298 12 12.0008 12C13.9655 12 15.686 12.6004 17.0579 13.6142Z\" fill=\"currentColor\"/><Path d=\"M12.0007 2C9.51545 2 7.50073 4.01472 7.50073 6.5C7.50073 8.98528 9.51545 11 12.0007 11C14.486 11 16.5007 8.98528 16.5007 6.5C16.5007 4.01472 14.486 2 12.0007 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPeopleEdit;\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,gBAA0nB,EAA1nB,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,+DAA+D,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+DAA+D,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+IAA+I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mKAAmK,KAAK,eAAc,CAAI,EACloB,EAEc",
  "debugId": "7C52041EF8CF9B4864756E2164756E21",
  "names": []
}