@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 674 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Plug2Line = /* @__PURE__ */ memo(function Plug2Line(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...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>);
});
/**
* Remix Icon: Plug 2 Line
* @see {@link https://remixicon.com/icon/plug-2-line Remix Icon Docs}
*/
export { Plug2Line };