react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 468 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgUser5Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M7.39 16.539a8 8 0 1 1 9.221 0l2.083 4.76a.5.5 0 0 1-.459.701H5.765a.5.5 0 0 1-.459-.7zm.729-5.569a4.002 4.002 0 0 0 7.763 0l-1.941-.485a2 2 0 0 1-3.882 0z" />
</Svg>
);
export default SvgUser5Fill;