UNPKG

@astraicons/react

Version:

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

21 lines 1 kB
import * as React from "react"; function VolumeDownIcon({ 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: "m11.663 3.599-1.362 1.486a2.54 2.54 0 0 1-1.874.842H7.302C4.374 5.927 2 8.465 2 11.597v.649c0 3.124 2.368 5.656 5.29 5.656h1.052c.759 0 1.485.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-.631M22.244 12.865a.75.75 0 1 0-.004-1.5l-4.242.011a.75.75 0 1 0 .003 1.5z" })); } const ForwardRef = React.forwardRef(VolumeDownIcon); export default ForwardRef;