@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 803 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const VolumeIcon = ({
title,
titleId,
...props
}, ref) => /*#__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: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M6 11.078a2 2 0 0 1 2-2h.402a3 3 0 0 0 1.997-.762l4.743-4.232a.918.918 0 0 1 1.515.521 41.3 41.3 0 0 1 0 14.78.918.918 0 0 1-1.515.52l-4.842-4.32a3 3 0 0 0-1.763-.753l-.693-.054A2 2 0 0 1 6 12.784z"
}));
const ForwardRef = forwardRef(VolumeIcon);
module.exports = ForwardRef;