UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 683 B
import * as React from "react"; import Svg, { Circle, Path } from "react-native-svg"; function SvgUserCheck(props) { return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props }, React.createElement(Circle, { cx: 12, cy: 8, r: 3.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12.25 19.25h-5.3c-1.18 0-2.06-1.04-1.46-2.055C6.363 15.723 8.24 14 12.25 14M14.75 17.75l1.25 1.5 3.25-4.5" }))); } export default SvgUserCheck;