mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 16:31:52 +01:00
config redirect
This commit is contained in:
23
node_modules/@heroicons/react/20/solid/PlusSmallIcon.js
generated
vendored
Normal file
23
node_modules/@heroicons/react/20/solid/PlusSmallIcon.js
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
const React = require("react");
|
||||
|
||||
function PlusSmallIcon({
|
||||
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", {
|
||||
d: "M10.75 6.75a.75.75 0 00-1.5 0v2.5h-2.5a.75.75 0 000 1.5h2.5v2.5a.75.75 0 001.5 0v-2.5h2.5a.75.75 0 000-1.5h-2.5v-2.5z"
|
||||
}));
|
||||
}
|
||||
|
||||
const ForwardRef = React.forwardRef(PlusSmallIcon);
|
||||
module.exports = ForwardRef;
|
||||
Reference in New Issue
Block a user