@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.27 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const VolumeHighIcon = ({
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: "M19.059 8.606c1.015.74 1.691 1.978 1.691 3.396 0 1.415-.675 2.652-1.69 3.392a.751.751 0 0 0 .885 1.212c1.397-1.02 2.305-2.705 2.305-4.604 0-1.902-.91-3.588-2.309-4.608a.75.75 0 1 0-.882 1.212m-1.954 2.031c.338.21.645.704.645 1.366s-.308 1.153-.642 1.358a.75.75 0 1 0 .784 1.278c.85-.52 1.358-1.54 1.358-2.636s-.509-2.115-1.355-2.64a.75.75 0 0 0-.79 1.274",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M12.143 3.53c.971-.867 2.518-.335 2.752.946a42 42 0 0 1 0 15.048c-.234 1.282-1.78 1.814-2.752.947L7.3 16.15a2.25 2.25 0 0 0-1.322-.565l-.694-.055A2.75 2.75 0 0 1 2.75 12.79v-1.706a2.75 2.75 0 0 1 2.75-2.75h.401A2.25 2.25 0 0 0 7.4 7.762z"
}));
const ForwardRef = forwardRef(VolumeHighIcon);
module.exports = ForwardRef;