UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 940 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Plug = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M18 6h-1V3c0-.6-.4-1-1-1h-2c-.6 0-1 .4-1 1v3h-2V3c0-.6-.4-1-1-1H8c-.6 0-1 .4-1 1v3H6c-.6 0-1 .4-1 1v4.2c.2 2.5 1.8 4.6 4 5.6V20c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2v-3.2c2.2-1 3.7-3.1 4-5.6V7c0-.6-.4-1-1-1zm-4-3h2v3h-2V3zM8 3h2v3H8V3zm5 17h-2v-2h2v2zm-1-4.5c-2.2 0-4.1-1.5-4.7-3.5h9.5c-.7 2-2.6 3.5-4.8 3.5zm5-5c0 .2 0 .3-.1.5H7.1c-.1-.2-.1-.3-.1-.5V8h10v2.5z", key: "k0" }))); }); Plug.displayName = 'Plug'; export var PlugDimensions = { height: 24, width: 24 };