react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 418 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"
width={24}
height={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;