mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-26 01:31:54 +02:00
27 lines
No EOL
729 B
JavaScript
27 lines
No EOL
729 B
JavaScript
const React = require("react");
|
|
|
|
function ArrowUturnDownIcon({
|
|
title,
|
|
titleId,
|
|
...props
|
|
}, svgRef) {
|
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
fill: "none",
|
|
viewBox: "0 0 24 24",
|
|
strokeWidth: 1.5,
|
|
stroke: "currentColor",
|
|
"aria-hidden": "true",
|
|
ref: svgRef,
|
|
"aria-labelledby": titleId
|
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
id: titleId
|
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
strokeLinecap: "round",
|
|
strokeLinejoin: "round",
|
|
d: "M15 15l-6 6m0 0l-6-6m6 6V9a6 6 0 0112 0v3"
|
|
}));
|
|
}
|
|
|
|
const ForwardRef = React.forwardRef(ArrowUturnDownIcon);
|
|
module.exports = ForwardRef; |