@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 427 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgNavigationLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="m4.965 5.096 3.546 12.41 3.04-6.08 5.637-2.255L4.965 5.096ZM2.899 2.3l18.806 6.268a.5.5 0 0 1 .028.939L13 13l-4.425 8.85a.5.5 0 0 1-.928-.086L2.261 2.91a.5.5 0 0 1 .638-.611Z" />
</Svg>
);
export default SvgNavigationLine;