react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 531 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFundsFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m3.901 17.864 3.911-3.911 2.829 2.828 4.571-4.571 1.793 1.793v-5h-5l1.793 1.793-3.157 3.157-2.829-2.829-4.945 4.946a10 10 0 0 1-.862-4.067c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10a9.99 9.99 0 0 1-8.104-4.14" />
</Svg>
);
export default SvgFundsFill;