@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.51 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 YoutubePlaceholder({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "YoutubePlaceholder",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2.24 3.326C3.493 3 8.494 3 8.494 3s5.01 0 6.266.346a1.975 1.975 0 0 1 1.403 1.403c.346 1.255.336 3.864.336 3.864s.009 2.402-.327 3.648a1.988 1.988 0 0 1-1.403 1.413C13.515 14 8.504 14 8.504 14s-4.99 0-6.256-.336a2.036 2.036 0 0 1-1.413-1.413C.509 11.015.5 8.603.5 8.603s0-2.599.326-3.854A2.068 2.068 0 0 1 2.24 3.326ZM11.25 8.5a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 0 0-2.5 0ZM8.5 9.75a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5ZM3.25 8.5a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 0 0-2.5 0Z",
shapeRendering: "geometricPrecision"
}));
}
YoutubePlaceholder.displayName = 'YoutubePlaceholder';
export default createBaseComponent(YoutubePlaceholder);