@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.08 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const VolumeXIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M18.554 9.477a.75.75 0 1 0-1.073 1.047l.958.98-.98.96a.75.75 0 1 0 1.048 1.073l.98-.959.96.982a.75.75 0 0 0 1.072-1.05l-.958-.98.98-.959A.75.75 0 1 0 20.493 9.5l-.981.958z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.625 3.53c.972-.867 2.519-.335 2.752.947a42.1 42.1 0 0 1 0 15.047c-.233 1.282-1.78 1.814-2.752.947l-4.842-4.32a2.25 2.25 0 0 0-1.322-.565l-.693-.055a2.75 2.75 0 0 1-2.536-2.74v-1.707a2.75 2.75 0 0 1 2.75-2.75h.402a2.25 2.25 0 0 0 1.498-.571z"
}));
const ForwardRef = forwardRef(VolumeXIcon);
export default ForwardRef;