@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 922 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const WaveIcon = ({
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: "M8.75 7.3a.75.75 0 0 0-1.5 0v10.4a.75.75 0 1 0 1.5 0zM4 10.017a.75.75 0 0 1 .75.75v3.466a.75.75 0 0 1-1.5 0v-3.466a.75.75 0 0 1 .75-.75M16 11.172a.75.75 0 0 1 .75.75v1.156a.75.75 0 0 1-1.5 0v-1.156a.75.75 0 0 1 .75-.75M20 10.017a.75.75 0 0 1 .75.75v3.466a.75.75 0 0 1-1.5 0v-3.466a.75.75 0 0 1 .75-.75M12.75 9.611a.75.75 0 0 0-1.5 0v5.778a.75.75 0 0 0 1.5 0z"
}));
const ForwardRef = forwardRef(WaveIcon);
module.exports = ForwardRef;