react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 517 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgUser6Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M12 17c3.662 0 6.865 1.575 8.607 3.925l-1.842.871C17.347 20.116 14.847 19 12 19c-2.848 0-5.347 1.116-6.765 2.796l-1.841-.872C5.136 18.574 8.338 17 12 17m0-15a5 5 0 0 1 5 5v3a5 5 0 0 1-10 0V7a5 5 0 0 1 5-5" />
</Svg>
);
export default SvgUser6Fill;