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 SvgUserCheck(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="M17 11l2 2 4-4"/> </Svg>); } export default SvgUserCheck;