react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 436 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgWomenLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M11 15.934A7.501 7.501 0 0112 1a7.5 7.5 0 011 14.934V18h5v2h-5v4h-2v-4H6v-2h5v-2.066zM12 14a5.5 5.5 0 100-11 5.5 5.5 0 000 11z" />
</Svg>
);
}
export default SvgWomenLine;