UNPKG

@astraicons/react

Version:

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

28 lines 1.14 kB
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", 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: "M20.025 13.977c.578-.359.976-1.105.976-1.974 0-.87-.398-1.616-.976-1.98", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { d: "m11.295 5.085 1.362-1.486c.979-1.069 2.846-.615 3.37.632.186.443.191.944.284 1.416.94 4.786.875 7.751-.017 12.549-.083.441-.094.9-.222 1.33-.431 1.451-2.24 2.027-3.333.82l-1.389-1.532a2.72 2.72 0 0 0-2.013-.912h-1.05C5.366 17.903 3 15.37 3 12.247v-.65c0-3.13 2.372-5.67 5.298-5.67h1.124c.705 0 1.38-.303 1.873-.841Z" })); } const ForwardRef = React.forwardRef(VolumeLowIcon); export default ForwardRef;