styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
18 lines (17 loc) • 1.23 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Server = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { fill: "none", d: "M4 15v4h16.002L20 15H4zm12 3h-2v-2h2v2zm3 0h-2v-2h2v2zM4 5v4h16.002L20 5H4zm12 3h-2V6h2v2zm3 0h-2V6h2v2z", key: "k0" }),
React.createElement("path", { d: "M20 3H4c-1.103 0-2 .897-2 2v4c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zM4 9V5h16l.002 4H4zm16 4H4c-1.103 0-2 .897-2 2v4c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-4c0-1.103-.897-2-2-2zM4 19v-4h16l.002 4H4z", key: "k1" }),
React.createElement("path", { d: "M17 6h2v2h-2zm-3 0h2v2h-2zm3 10h2v2h-2zm-3 0h2v2h-2z", key: "k2" })));
});
exports.Server.displayName = 'Server';
exports.ServerDimensions = { height: 24, width: 24 };