react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 512 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgNurseLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M12 15a8 8 0 0 1 7.939 7H4.063A8 8 0 0 1 12 15m-1.812 2.28A6.02 6.02 0 0 0 6.802 20h5.199zm3.626 0L12.001 20h5.198a6.02 6.02 0 0 0-3.385-2.72M18.001 2v6A6 6 0 0 1 6 8V2zM8 8a4 4 0 0 0 8 0zm8-4H8v2h8z" />
</Svg>
);
export default SvgNurseLine;