react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 458 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgGuideLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M13 8v8a3 3 0 0 1-3 3H7.83a3.001 3.001 0 1 1 0-2H10a1 1 0 0 0 1-1V8a3 3 0 0 1 3-3h3V2l5 4-5 4V7h-3a1 1 0 0 0-1 1M5 19a1 1 0 1 0 0-2 1 1 0 0 0 0 2" />
</Svg>
);
export default SvgGuideLine;