react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 476 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgH3 = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m22 8-.002 2-2.505 2.883a3.752 3.752 0 0 1-.993 7.367 3.75 3.75 0 0 1-3.682-3.033l1.964-.382a1.75 1.75 0 1 0 .924-1.895l-1.307-1.547L19.35 10H15V8zM4 4v7h7V4h2v16h-2v-7H4v7H2V4z" />
</Svg>
);
export default SvgH3;