react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 439 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSpyFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M17 13a4 4 0 0 1 0 8c-2.142 0-4-1.79-4-4h-2a4 4 0 1 1-.535-2h3.07A4 4 0 0 1 17 13M2 12v-2h2V7a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3h2v2z" />
</Svg>
);
export default SvgSpyFill;