@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.37 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 VideoCarousel({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "VideoCarousel",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M9.87 7.65a.4.4 0 0 1 0 .7L6.6 10.17A.4.4 0 0 1 6 9.82V6.18c0-.3.33-.5.6-.35l3.27 1.82Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M3 3c0-1.1.9-2 2-2h6a2 2 0 0 1 2 2h1a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-1a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2H2a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h1Zm2 0h6v10H5V3ZM3 5H2v6h1V5Zm10 6h1V5h-1v6Z",
shapeRendering: "geometricPrecision"
}));
}
VideoCarousel.displayName = 'VideoCarousel';
export default createBaseComponent(VideoCarousel);