react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 529 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgPlug2Line = 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-4V7a1 1 0 0 1 1-1h2V2h2v4h6V2h2v4h2a1 1 0 0 1 1 1v7a4 4 0 0 1-4 4zm-5-2h8a2 2 0 0 0 2-2v-3H6v3a2 2 0 0 0 2 2m10-8H6v1h12zm-6 6.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2M11 2h2v3h-2z" />
</Svg>
);
export default SvgPlug2Line;