remix-icons-rn
Version:
React native implementation for the popular [RemixIcon](https://remixicon.com) open source library. This library is a fork of (https://github.com/ajayesivan/react-native-remix-icon) since it seemed to be no longer maintained for my use case.
14 lines (13 loc) • 512 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgWaterPercentFill = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="M12 .269 5.636 6.633a9 9 0 1 0 12.728 0zm4.243 9.902-7.071 7.072-1.415-1.415 7.072-7.07zM8.11 9.111a1.5 1.5 0 1 1 2.121 2.121 1.5 1.5 0 0 1-2.121-2.121m7.778 7.778a1.5 1.5 0 1 1-2.121-2.121 1.5 1.5 0 0 1 2.121 2.12" />
</Svg>
);
export default SvgWaterPercentFill;