@semcore/icon
Version:
Semrush Icon Component
30 lines • 1.59 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function VolumeUp({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "VolumeUp",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M15.465 2.563a1 1 0 0 1 1.336-.462A11 11 0 0 1 23 12a11 11 0 0 1-6.199 9.9 1 1 0 0 1-.874-1.8A9 9 0 0 0 21 12a9 9 0 0 0-5.073-8.1 1 1 0 0 1-.462-1.337Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M13.591 6.127a1 1 0 0 1 1.326-.492 7 7 0 0 1 0 12.73 1 1 0 1 1-.834-1.818 5 5 0 0 0 0-9.094 1 1 0 0 1-.492-1.326ZM3 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2l4.116 4.94a.5.5 0 0 0 .884-.32V4.38a.5.5 0 0 0-.884-.32L5 9.001 3 9Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M13.5 9.402a1 1 0 1 0-1 1.731 1 1 0 0 1 0 1.734 1 1 0 1 0 1 1.731 3 3 0 0 0 0-5.196Z",
shapeRendering: "geometricPrecision"
}));
}
VolumeUp.displayName = 'VolumeUp';
export default createBaseComponent(VolumeUp);