@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.12 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const WaterIcon = ({
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: "M8.123 4.155c.501-1.17 2.137-1.084 2.6.036l1.813 4.378 1.235-2.14c.469-.999 1.915-.955 2.348.05l3.512 7.717.003.009c1.624 3.86-2.314 7.496-6.123 5.863a5 5 0 0 1-.676-.354l-.008-.005-.128-.082c-1.46 1.069-3.466 1.44-5.45.589-2.79-1.196-4.13-4.39-2.947-7.15zm5.605 14.494c.115.072.145.084.23.12l.093.039c2.77 1.187 5.418-1.438 4.323-4.063L14.926 7.17l-1.729 2.998 1.28 3.091c.833 2.01.391 3.984-.75 5.39m-5.251-4.54a.75.75 0 0 0-1.496-.11c-.066.893.313 2.85 2.354 3.7a.75.75 0 0 0 .577-1.384 2.3 2.3 0 0 1-1.435-2.207",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(WaterIcon);
export default ForwardRef;