mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-25 21:11:54 +02:00
25 lines
No EOL
794 B
JavaScript
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; |