mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 11:32:30 -06:00
25 lines
No EOL
988 B
JavaScript
25 lines
No EOL
988 B
JavaScript
const React = require("react");
|
|
|
|
function ChartBarSquareIcon({
|
|
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.25v11.5A2.25 2.25 0 004.25 18h11.5A2.25 2.25 0 0018 15.75V4.25A2.25 2.25 0 0015.75 2H4.25zM15 5.75a.75.75 0 00-1.5 0v8.5a.75.75 0 001.5 0v-8.5zm-8.5 6a.75.75 0 00-1.5 0v2.5a.75.75 0 001.5 0v-2.5zM8.584 9a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5a.75.75 0 01.75-.75zm3.58-1.25a.75.75 0 00-1.5 0v6.5a.75.75 0 001.5 0v-6.5z",
|
|
clipRule: "evenodd"
|
|
}));
|
|
}
|
|
|
|
const ForwardRef = React.forwardRef(ChartBarSquareIcon);
|
|
module.exports = ForwardRef; |