@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 971 B
JavaScript
const React = require("react");
function Server06Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M20 12a8 8 0 01-8 8m8-8a8 8 0 00-8-8m8 8H4m8 8a8 8 0 01-8-8m8 8a12.24 12.24 0 003.2-8A12.24 12.24 0 0012 4m0 16a12.24 12.24 0 01-3.2-8A12.24 12.24 0 0112 4m-8 8a8 8 0 018-8M6 20a2 2 0 11-4 0 2 2 0 014 0zm16 0a2 2 0 11-4 0 2 2 0 014 0zM6 4a2 2 0 11-4 0 2 2 0 014 0zm16 0a2 2 0 11-4 0 2 2 0 014 0z"
}));
}
const ForwardRef = React.forwardRef(Server06Icon);
module.exports = ForwardRef;