react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 515 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgFundsFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M3.897 17.86l3.91-3.91 2.829 2.828 4.571-4.57L17 14V9h-5l1.793 1.793-3.157 3.157-2.828-2.829-4.946 4.946A9.965 9.965 0 012 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10a9.987 9.987 0 01-8.103-4.14z" />
</Svg>
);
}
export default SvgFundsFill;