UNPKG

react-native-feather

Version:
11 lines (10 loc) 457 B
import * as React from "react"; import Svg, { Path, Circle } from "react-native-svg"; function SvgUserPlus(props) { return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}> <Path d="M16 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/> <Circle cx={8.5} cy={7} r={4}/> <Path d="M20 8v6M23 11h-6"/> </Svg>); } export default SvgUserPlus;