{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconUserRemoveRight/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 IconUserRemoveRight: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconUserRemoveRight\"><Path d=\"M13.168 12.1699C15.4663 13.5755 17 16.1087 17 19V21H1V19C1 16.109 2.53311 13.5755 4.83105 12.1699C5.95551 13.1237 7.41009 13.7002 9 13.7002C10.5896 13.7002 12.0436 13.1234 13.168 12.1699Z\" fill=\"currentColor\"/><Path d=\"M23.9141 9L21.6641 11.25L23.9141 13.5L22.5 14.9141L20.25 12.6641L18 14.9141L16.5859 13.5L18.8359 11.25L16.5859 9L18 7.58594L20.25 9.83594L22.5 7.58594L23.9141 9Z\" fill=\"currentColor\"/><Path d=\"M9 2.5C11.6234 2.5 13.75 4.62665 13.75 7.25C13.75 9.87335 11.6234 12 9 12C6.37665 12 4.25 9.87335 4.25 7.25C4.25 4.62665 6.37665 2.5 9 2.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconUserRemoveRight;\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,EAAwE,EAAM,KAAK,CAAC,IAAU,CACzG,OAAO,gBAAkqB,EAAlqB,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,EAAE,8LAA8L,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oKAAoK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8IAA8I,KAAK,eAAc,CAAI,EAC1qB,EAEc",
  "debugId": "C60692E447598E5864756E2164756E21",
  "names": []
}