mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-24 07:21:54 +02:00
23 lines
No EOL
696 B
JavaScript
23 lines
No EOL
696 B
JavaScript
const React = require("react");
|
|
|
|
function CloudIcon({
|
|
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: "M1 12.5A4.5 4.5 0 005.5 17H15a4 4 0 001.866-7.539 3.504 3.504 0 00-4.504-4.272A4.5 4.5 0 004.06 8.235 4.502 4.502 0 001 12.5z"
|
|
}));
|
|
}
|
|
|
|
const ForwardRef = React.forwardRef(CloudIcon);
|
|
module.exports = ForwardRef; |