UNPKG

@astraicons/react

Version:

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

24 lines 1.71 kB
const React = require("react"); const { forwardRef } = require("react"); const CloudyIcon = ({ 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", { d: "M10.167 2.75a.75.75 0 0 0-1.5 0v.667a.75.75 0 1 0 1.5 0zM5.006 3.946a.75.75 0 0 0-1.06 1.06l.636.637a.75.75 0 0 0 1.061-1.06zM6.166 9.417A3.25 3.25 0 0 1 12.342 8a7.1 7.1 0 0 1 1.672.221c-.023-.136.035.133 0 0a4.752 4.752 0 0 0-9.348 1.195c0 1.45.65 2.747 1.672 3.617a8.5 8.5 0 0 1 .521-1.61 3.24 3.24 0 0 1-.693-2.007M2.75 8.667a.75.75 0 1 0 0 1.5h.667a.75.75 0 0 0 0-1.5zM14.779 4.966a.75.75 0 0 0-1.07-1.052l-.631.642a.75.75 0 1 0 1.07 1.052z" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M7.098 10.944C7.92 9.444 9.477 8 12.25 8h.092a6.7 6.7 0 0 1 1.672.222c1.702.462 2.76 1.575 3.388 2.722.611 1.116.821 2.262.885 2.872l.059.025.088.036c.284.115.697.284 1.11.533.466.281.962.682 1.34 1.276.382.599.616 1.351.616 2.29 0 1.53-.663 2.48-1.546 2.997-.82.479-1.738.534-2.232.526a31.302 31.302 0 0 1-.406-.014 8 8 0 0 0-.351-.01h-9.43a8 8 0 0 0-.392.012c-.113.005-.238.01-.365.012-.494.008-1.413-.047-2.232-.526C3.663 20.456 3 19.507 3 17.975c0-.938.234-1.69.616-2.29a4 4 0 0 1 1.34-1.275c.413-.25.826-.418 1.11-.533l.088-.036q.031-.014.059-.025a7.953 7.953 0 0 1 .647-2.393q.106-.24.238-.48", clipRule: "evenodd" })); const ForwardRef = forwardRef(CloudyIcon); module.exports = ForwardRef;