mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-25 21:51:52 +02:00
23 lines
No EOL
771 B
JavaScript
23 lines
No EOL
771 B
JavaScript
const React = require("react");
|
|
|
|
function PaperAirplaneIcon({
|
|
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: "M3.478 2.405a.75.75 0 00-.926.94l2.432 7.905H13.5a.75.75 0 010 1.5H4.984l-2.432 7.905a.75.75 0 00.926.94 60.519 60.519 0 0018.445-8.986.75.75 0 000-1.218A60.517 60.517 0 003.478 2.405z"
|
|
}));
|
|
}
|
|
|
|
const ForwardRef = React.forwardRef(PaperAirplaneIcon);
|
|
module.exports = ForwardRef; |