react-native-remix-icons
Version:
Remix Icon for React Native
14 lines (13 loc) • 387 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgLineHeight2 = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="M2 3v2h2v14H2v2h6v-2H6V5h2V3zm8.2 15h2.154l1.2-3h4.892l1.2 3H21.8L17 6h-2zM16 8.885 17.646 13h-3.292z" />
</Svg>
);
export default SvgLineHeight2;