react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 435 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgLineChartLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M5 3v16h16v2H3V3h2zm15.293 3.293l1.414 1.414L16 13.414l-3-2.999-4.293 4.292-1.414-1.414L13 7.586l3 2.999 4.293-4.292z" />
</Svg>
);
}
export default SvgLineChartLine;