@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.04 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const CloudyIcon = ({
title,
titleId,
...props
}, ref) => /*#__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: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M17.813 14.455C17.813 13.993 17.4 9 12.5 9s-5.312 4.993-5.312 5.454c0 .462-3.188.542-3.188 3.771s3.4 2.75 3.4 2.75h10.2s3.4.479 3.4-2.75-3.187-3.31-3.187-3.77"
}), /*#__PURE__*/React.createElement("path", {
d: "M13.61 9a4.001 4.001 0 1 0-5.804 4.209"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M9.668 3.667V3M3.668 9.667h-.667M5.543 5.542l-.59-.59"
}));
const ForwardRef = forwardRef(CloudyIcon);
export default ForwardRef;