@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.09 kB
JavaScript
const React = require("react");
function VolumeDownIcon({
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", {
d: "m10.202 5.085 1.346-1.486c.97-1.07 2.82-.613 3.335.639.18.44.186.934.277 1.401.931 4.793.867 7.76-.018 12.564-.08.437-.091.89-.215 1.317-.423 1.456-2.215 2.035-3.298.827l-1.373-1.533a2.67 2.67 0 0 0-1.99-.912h-1.04C4.34 17.903 2 15.37 2 12.247v-.65c0-3.13 2.345-5.67 5.239-5.67h1.11a2.5 2.5 0 0 0 1.853-.841Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
d: "m17.808 12.126 4.192-.01"
}));
}
const ForwardRef = React.forwardRef(VolumeDownIcon);
module.exports = ForwardRef;