@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.21 kB
JavaScript
import * as React from "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.3 13.977c.577-.359.975-1.105.975-1.974 0-.87-.398-1.616-.976-1.98M20.512 15.51C21.41 14.739 22 13.457 22 12.003c0-1.457-.59-2.74-1.49-3.512",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
d: "m10.301 5.085 1.363-1.486c.98-1.069 2.847-.615 3.372.631.187.444.192.945.285 1.417.941 4.786.876 7.751-.018 12.549-.082.441-.093.9-.221 1.331-.433 1.45-2.242 2.026-3.336.82l-1.39-1.533a2.72 2.72 0 0 0-2.014-.912H7.291C4.369 17.903 2 15.37 2 12.247v-.65c0-3.13 2.373-5.67 5.302-5.67h1.124c.705 0 1.38-.303 1.874-.841Z"
}));
}
const ForwardRef = React.forwardRef(VolumeHighIcon);
export default ForwardRef;