react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 494 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSeoFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M8 3a7 7 0 0 0 0 14h1.07a7 7 0 0 1 0-2H8A5 5 0 0 1 8 5h8a5 5 0 0 1 4.9 6 7 7 0 0 1 1.426 2A7 7 0 0 0 16 3zm3 13a5 5 0 1 1 9.172 2.757l2.535 2.536-1.414 1.414-2.536-2.535A5 5 0 0 1 11 16" />
</Svg>
);
export default SvgSeoFill;