@nomercyicons/react
Version:
31 lines • 1.18 kB
JavaScript
const React = require("react");
function InstallDesktopRoundedIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
fill: "none"
}, /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
})), /*#__PURE__*/React.createElement("path", {
d: "M20 17H4V5h8V3H4c-1.1 0-2 .9-2 2v12a2 2 0 002 2h4v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h4c1.1 0 2-.9 2-2v-3h-2v3z"
}), /*#__PURE__*/React.createElement("path", {
d: "M17.71 13.29L21.3 9.7a.996.996 0 10-1.41-1.41L18 10.17V4c0-.55-.45-1-1-1s-1 .45-1 1v6.17l-1.89-1.88A.996.996 0 1012.7 9.7l3.59 3.59c.4.39 1.03.39 1.42 0z"
}));
}
const ForwardRef = React.forwardRef(InstallDesktopRoundedIcon);
module.exports = ForwardRef;