@sidekickicons/react
Version:
<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ndri/sidekickicons/HEAD/.github/logo-dark.svg"> <source media="(prefers-
22 lines • 849 B
JavaScript
const React = require("react");
function ComputerLaptopIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
fill: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M6 4C4.49 4 3.25 5.24 3.25 6.75v5.473l-.871 1.02C1.487 14.285 2.276 16 3.649 16h12.703c1.372 0 2.161-1.714 1.27-2.758l-.872-1.02V6.75C16.75 5.24 15.51 4 14 4Zm0 1.5h8c.7 0 1.25.55 1.25 1.25v5H4.75v-5c0-.7.55-1.25 1.25-1.25Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ComputerLaptopIcon);
module.exports = ForwardRef;