react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 665 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgUserCommunityFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M5.234 7.73A8 8 0 0 1 12 4a8 8 0 0 1 6.767 3.73l1.69-1.07A10 10 0 0 0 12 2a10 10 0 0 0-8.456 4.66zM12 20a8 8 0 0 1-6.766-3.73l-1.69 1.07A10 10 0 0 0 12 22a10 10 0 0 0 8.457-4.66l-1.69-1.07A8 8 0 0 1 12 20m0-8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m0 1a4 4 0 0 1 4 4H8a4 4 0 0 1 4-4m-6-1a3 3 0 1 1-6 0 3 3 0 0 1 6 0m15 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6" />
</Svg>
);
export default SvgUserCommunityFill;