UNPKG

styled-icons

Version:

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

15 lines (14 loc) 909 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Server = 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", { fill: "none", d: "M13 16h2v2h-2zm4 0h2v2h-2zM13 6h2v2h-2zm4 0h2v2h-2z", key: "k0" }), React.createElement("path", { d: "M20 3H4a2 2 0 00-2 2v4a2 2 0 002 2h16a2 2 0 002-2V5a2 2 0 00-2-2zm-5 5h-2V6h2v2zm4 0h-2V6h2v2zm1 5H4a2 2 0 00-2 2v4a2 2 0 002 2h16a2 2 0 002-2v-4a2 2 0 00-2-2zm-5 5h-2v-2h2v2zm4 0h-2v-2h2v2z", key: "k1" }))); }); Server.displayName = 'Server'; export var ServerDimensions = { height: 24, width: 24 };