@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.07 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const VolumeUpIcon = ({
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", {
strokeLinecap: "round",
d: "M3.18 11.083a2 2 0 0 1 2-2h.401a3 3 0 0 0 1.998-.761l4.743-4.232a.918.918 0 0 1 1.514.52 41.3 41.3 0 0 1 0 14.78.918.918 0 0 1-1.514.52L7.48 15.59a3 3 0 0 0-1.763-.752l-.694-.055A2 2 0 0 1 3.18 12.79z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
d: "m17.182 12.126 2.121-.005m0 0 2.121-.004m-2.121.004.004 2.122m-.004-2.122L19.299 10",
opacity: 0.4
}));
const ForwardRef = forwardRef(VolumeUpIcon);
module.exports = ForwardRef;