@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 405 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgH2 = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M4 4v7h7V4h2v16h-2v-7H4v7H2V4h2Zm14.5 4a3.75 3.75 0 0 1 2.978 6.03l-.148.18L18.034 18H22v2h-7v-1.556l4.82-5.546a1.75 1.75 0 1 0-3.065-1.292l-.005.144h-2A3.75 3.75 0 0 1 18.5 8Z" />
</Svg>
);
export default SvgH2;