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 SvgH6 = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m21.097 8-2.598 4.5a4 4 0 1 1-3.453 1.981L18.788 8zM4 4v7h7V4h2v16h-2v-7H4v7H2V4zm14.5 10.5a2 2 0 1 0 0 4 2 2 0 0 0 0-4" />
</Svg>
);
export default SvgH6;