UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

23 lines 1.3 kB
const React = require("react"); function VolumeHighIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M20.998 7.921a.75.75 0 1 0-.977 1.138c.716.615 1.229 1.681 1.229 2.943 0 1.26-.512 2.325-1.227 2.94A.75.75 0 0 0 21 16.08c1.081-.93 1.749-2.428 1.749-4.077 0-1.652-.67-3.151-1.752-4.08" }), /*#__PURE__*/React.createElement("path", { d: "M18.699 9.389a.75.75 0 1 0-.799 1.27c.324.203.625.688.625 1.344s-.302 1.138-.621 1.337a.75.75 0 1 0 .791 1.274c.835-.519 1.33-1.53 1.33-2.611s-.495-2.092-1.326-2.614M10.302 5.085l1.362-1.486c.98-1.069 2.848-.615 3.373.631.186.444.191.945.284 1.417.941 4.786.876 7.751-.018 12.549-.082.441-.093.9-.221 1.331-.432 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.374-5.67 5.302-5.67h1.124c.706 0 1.381-.303 1.875-.841" })); } const ForwardRef = React.forwardRef(VolumeHighIcon); module.exports = ForwardRef;