@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 1.09 kB
JavaScript
import * as React from "react";
function VolumeLowIcon({
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: "m12.663 3.599-1.362 1.486a2.54 2.54 0 0 1-1.874.842H8.302C5.374 5.927 3 8.465 3 11.597v.649c0 3.124 2.368 5.656 5.29 5.656h1.052c.759 0 1.486.33 2.014.912l1.39 1.533c1.093 1.206 2.903.63 3.335-.82.08-.268.114-.547.149-.826q.028-.255.073-.505c.893-4.798.959-7.763.017-12.549a8 8 0 0 1-.072-.468c-.043-.325-.086-.65-.212-.949-.525-1.246-2.393-1.7-3.373-.631M20.437 9.389a.75.75 0 0 0-.8 1.27c.325.203.625.688.625 1.344s-.3 1.138-.62 1.337a.75.75 0 0 0 .79 1.274c.836-.519 1.33-1.53 1.33-2.611s-.495-2.092-1.326-2.614"
}));
}
const ForwardRef = React.forwardRef(VolumeLowIcon);
export default ForwardRef;