UNPKG

@astraicons/react

Version:

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

29 lines 1.3 kB
import * as React from "react"; import { forwardRef } from "react"; const CloudyAndWindyIcon = ({ 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.4 15.975s3.6.479 3.6-2.75-3.375-3.31-3.375-3.77C17.625 8.993 17.189 4 12 4 6.81 4 6.375 8.993 6.375 9.455c0 .46-3.375.541-3.375 3.77s3.6 2.75 3.6 2.75" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M10.572 19.682a.93.93 0 0 0 .393.271.83.83 0 0 0 .458.027.9.9 0 0 0 .414-.224c.12-.113.214-.258.273-.421a1.22 1.22 0 0 0-.088-1.012 1 1 0 0 0-.34-.351.85.85 0 0 0-.446-.126H9m3.992-4.453c.137-.156.305-.271.49-.335.186-.064.382-.075.571-.032.19.043.367.14.517.28s.266.32.34.525a1.52 1.52 0 0 1-.108 1.262 1.25 1.25 0 0 1-.423.44c-.17.104-.36.159-.554.16H9", opacity: 0.4 })); const ForwardRef = forwardRef(CloudyAndWindyIcon); export default ForwardRef;