@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.4 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 Youtube({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Youtube",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M7.995 3s-5 0-6.256.326A2.068 2.068 0 0 0 .326 4.75C0 6.004 0 8.603 0 8.603s.009 2.409.335 3.644a2.036 2.036 0 0 0 1.413 1.413c1.265.336 6.256.336 6.256.336s5.01 0 6.266-.326a1.988 1.988 0 0 0 1.403-1.413c.336-1.245.327-3.644.327-3.644s.01-2.609-.336-3.864a1.975 1.975 0 0 0-1.403-1.403C13.006 3 7.995 3 7.995 3ZM6.951 6.045l3.399 2.171c.2.128.2.45 0 .577l-3.4 2.162c-.2.128-.45-.032-.45-.288V6.333c0-.256.25-.416.451-.288Z",
shapeRendering: "geometricPrecision"
}));
}
Youtube.displayName = 'Youtube';
export default createBaseComponent(Youtube);