@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 995 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const WaterIcon = ({
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", {
d: "m12.175 10.692 1.9-3.293c.178-.417.792-.413.97.013l3.073 6.75c1.193 2.838-1.69 5.58-4.57 4.346a4 4 0 0 1-.507-.266M10.319 5.397l3.285 7.935c1.426 3.444-2.065 6.792-5.533 5.305-2.15-.921-3.164-3.37-2.264-5.468l3.342-7.797c.218-.508.956-.492 1.17.025Z",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M8.254 13.797c-.045.612.224 1.986 1.658 2.584"
}));
const ForwardRef = forwardRef(WaterIcon);
module.exports = ForwardRef;