@elevyg/react-native-ionicons
Version:
Ionicons 5 for React Native
8 lines (6 loc) • 618 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgWaterOutline(props) {
return <Svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512" {...props}><Path d="M400 320c0 88.37-55.63 144-144 144s-144-55.63-144-144c0-94.83 103.23-222.85 134.89-259.88a12 12 0 0118.23 0C296.77 97.15 400 225.17 400 320z" fill="none" stroke={props.fill} strokeMiterlimit={10} strokeWidth={32} /><Path d="M344 328a72 72 0 01-72 72" fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /></Svg>;
}
export default SvgWaterOutline;