react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 570 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgFundsLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M4.406 14.523l3.402-3.402 2.828 2.829 3.157-3.157L12 9h5v5l-1.793-1.793-4.571 4.571-2.828-2.828-2.475 2.474a8 8 0 10-.927-1.9zm-1.538 1.558l-.01-.01.004-.004A9.965 9.965 0 012 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10c-4.07 0-7.57-2.43-9.132-5.919z" />
</Svg>
);
}
export default SvgFundsLine;