@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.2 kB
JavaScript
const React = require("react");
function VolumeHighIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M18.299 13.977c.577-.359.975-1.105.975-1.974 0-.87-.398-1.616-.975-1.98M20.51 15.51c.899-.772 1.488-2.054 1.488-3.508 0-1.457-.59-2.74-1.49-3.512"
}), /*#__PURE__*/React.createElement("path", {
d: "m10.3 5.085 1.363-1.486c.98-1.069 2.848-.615 3.373.631.187.444.192.945.284 1.417.942 4.786.876 7.751-.017 12.549-.082.441-.094.9-.222 1.331-.432 1.45-2.242 2.026-3.335.82l-1.39-1.533a2.72 2.72 0 0 0-2.014-.912H7.29C4.368 17.903 2 15.37 2 12.247v-.65c0-3.13 2.374-5.67 5.302-5.67h1.125c.705 0 1.38-.303 1.874-.841Z"
}));
}
const ForwardRef = React.forwardRef(VolumeHighIcon);
module.exports = ForwardRef;