@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.48 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "VolumeUp",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M10.057 1.926a.996.996 0 0 1 1.276-.618C14.051 2.282 16 4.908 16 8c0 3.091-1.95 5.718-4.667 6.692a.997.997 0 0 1-1.276-.618 1.017 1.017 0 0 1 .61-1.294A5.067 5.067 0 0 0 14 8a5.067 5.067 0 0 0-3.333-4.78 1.017 1.017 0 0 1-.61-1.294Zm-3.947.26L3 6H1.5A1.5 1.5 0 0 0 0 7.5v1A1.5 1.5 0 0 0 1.5 10H3l3.11 3.814c.295.364.89.158.89-.309V2.495c0-.467-.595-.673-.89-.309Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M10.5 5.402a1 1 0 0 0-1 1.731 1 1 0 0 1 0 1.734 1 1 0 0 0 1 1.731 3 3 0 0 0 0-5.196Z",
shapeRendering: "geometricPrecision"
}));
}
VolumeUp.displayName = 'VolumeUp';
export default createBaseComponent(VolumeUp);