react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 465 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgRainyFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m15.86 18-3.153-3.153a1 1 0 0 0-1.414 0L8.18 17.96A8.001 8.001 0 1 1 15.98 6.087 6 6 0 1 1 17 18zm-5.628.732L12 16.965l1.768 1.767a2.5 2.5 0 1 1-3.536 0" />
</Svg>
);
export default SvgRainyFill;