react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 541 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgNurseLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M12 15a8.001 8.001 0 017.938 7H4.062A8.001 8.001 0 0112 15zm-1.813 2.28A6.025 6.025 0 006.8 20H12l-1.813-2.72zm3.627 0L12 20h5.199a6.02 6.02 0 00-3.385-2.72zM18 2v6A6 6 0 116 8V2h12zM8 8c0 2.21 1.79 4 4 4s4-1.79 4-4H8zm8-4H8v2h8V4z" />
</Svg>
);
}
export default SvgNurseLine;