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.13 kB
const React = require("react"); function VolumeXIcon({ 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.49 13.536a.75.75 0 0 1-1.061-.012l-.959-.98-.98.957a.75.75 0 1 1-1.049-1.072l.981-.959-.958-.98a.75.75 0 0 1 1.073-1.049l.958.98.98-.957a.75.75 0 1 1 1.05 1.072l-.982.959.959.98a.75.75 0 0 1-.013 1.061" })); } const ForwardRef = React.forwardRef(VolumeXIcon); module.exports = ForwardRef;