@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 981 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.21 10.505 2.17-3.763c.205-.476.906-.472 1.11.014l3.511 7.715c1.364 3.244-1.93 6.378-5.221 4.967a4 4 0 0 1-.58-.305m-3.111-14.68 3.754 9.069c1.63 3.937-2.36 7.763-6.324 6.064-2.457-1.054-3.615-3.852-2.587-6.25l3.82-8.91c.249-.581 1.092-.563 1.337.027Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M7.729 14.054c-.052.7.256 2.27 1.894 2.953"
}));
const ForwardRef = forwardRef(WaterIcon);
module.exports = ForwardRef;