UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

22 lines 1.2 kB
import * as React from "react"; import { forwardRef } from "react"; const CloudIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M6.593 8.178C7.467 6.672 9.104 5.25 12 5.25s4.533 1.422 5.407 2.928c.647 1.115.871 2.26.94 2.877l.077.03.094.036c.3.116.733.282 1.166.53.487.277 1.01.675 1.41 1.268.406.6.656 1.36.656 2.306 0 .764-.172 1.402-.486 1.92a3.04 3.04 0 0 1-1.187 1.11c-.866.463-1.832.505-2.333.493a13 13 0 0 1-.34-.012c-.122-.006-.23-.011-.368-.011H6.964c-.138 0-.246.005-.369.01-.097.005-.203.01-.34.013-.5.012-1.466-.03-2.332-.494a3.04 3.04 0 0 1-1.187-1.11c-.314-.517-.486-1.155-.486-1.919 0-.947.25-1.705.656-2.306.4-.593.923-.99 1.41-1.268a8.4 8.4 0 0 1 1.166-.53l.094-.036.077-.03c.069-.617.293-1.762.94-2.877", clipRule: "evenodd" })); const ForwardRef = forwardRef(CloudIcon); export default ForwardRef;