react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 413 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgDownloadLine(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 19h18v2H3v-2zm10-5.828L19.071 7.1l1.414 1.414L12 17 3.515 8.515 4.929 7.1 11 13.17V2h2v11.172z" />
</Svg>
);
}
export default SvgDownloadLine;