@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.31 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 Music({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Music",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M4 2.667a1 1 0 0 1 .836-.986l10-1.667A1 1 0 0 1 16 1v10.601c-.004.928-.853 1.888-2.06 2.254-1.36.412-2.658-.085-2.9-1.11-.243-1.024.662-2.188 2.02-2.6A3.28 3.28 0 0 1 14 10V6.153L6 7.486v6.104c.003.932-.848 1.898-2.06 2.265-1.36.412-2.658-.085-2.9-1.11-.243-1.024.661-2.188 2.02-2.6A3.28 3.28 0 0 1 4 12V2.667Zm2 .847 8-1.333v1.945L6 5.459V3.514Z",
shapeRendering: "geometricPrecision"
}));
}
Music.displayName = 'Music';
export default createBaseComponent(Music);