blowfish/node_modules/@heroicons/react/24/solid/Square2StackIcon.js
2023-01-29 22:30:24 +00:00

25 lines
No EOL
794 B
JavaScript

const React = require("react");
function Square2StackIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M16.5 6a3 3 0 00-3-3H6a3 3 0 00-3 3v7.5a3 3 0 003 3v-6A4.5 4.5 0 0110.5 6h6z"
}), /*#__PURE__*/React.createElement("path", {
d: "M18 7.5a3 3 0 013 3V18a3 3 0 01-3 3h-7.5a3 3 0 01-3-3v-7.5a3 3 0 013-3H18z"
}));
}
const ForwardRef = React.forwardRef(Square2StackIcon);
module.exports = ForwardRef;