mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 19:42:34 -06:00
25 lines
1.1 KiB
JavaScript
25 lines
1.1 KiB
JavaScript
|
const React = require("react");
|
||
|
|
||
|
function Squares2X2Icon({
|
||
|
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",
|
||
|
ref: svgRef,
|
||
|
"aria-labelledby": titleId
|
||
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
||
|
id: titleId
|
||
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
||
|
fillRule: "evenodd",
|
||
|
d: "M4.25 2A2.25 2.25 0 002 4.25v2.5A2.25 2.25 0 004.25 9h2.5A2.25 2.25 0 009 6.75v-2.5A2.25 2.25 0 006.75 2h-2.5zm0 9A2.25 2.25 0 002 13.25v2.5A2.25 2.25 0 004.25 18h2.5A2.25 2.25 0 009 15.75v-2.5A2.25 2.25 0 006.75 11h-2.5zm9-9A2.25 2.25 0 0011 4.25v2.5A2.25 2.25 0 0013.25 9h2.5A2.25 2.25 0 0018 6.75v-2.5A2.25 2.25 0 0015.75 2h-2.5zm0 9A2.25 2.25 0 0011 13.25v2.5A2.25 2.25 0 0013.25 18h2.5A2.25 2.25 0 0018 15.75v-2.5A2.25 2.25 0 0015.75 11h-2.5z",
|
||
|
clipRule: "evenodd"
|
||
|
}));
|
||
|
}
|
||
|
|
||
|
const ForwardRef = React.forwardRef(Squares2X2Icon);
|
||
|
module.exports = ForwardRef;
|