react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 488 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgPlug2Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M13 18v2h6v2h-6a2 2 0 0 1-2-2v-2H8a4 4 0 0 1-4-4v-4h16v4a4 4 0 0 1-4 4zm4-12h2a1 1 0 0 1 1 1v2H4V7a1 1 0 0 1 1-1h2V2h2v4h6V2h2zm-5 8.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2M11 2h2v3h-2z" />
</Svg>
);
export default SvgPlug2Fill;