@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 342 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgLineHeight = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M11 4h10v2H11V4ZM6 7v4H4V7H1l4-4 4 4H6Zm0 10h3l-4 4-4-4h3v-4h2v4Zm5 1h10v2H11v-2Zm-2-7h12v2H9v-2Z" />
</Svg>
);
export default SvgLineHeight;