@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.38 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 TwitterCarousel({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "TwitterCarousel",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M9.506 10.896 2.753 1h6.21l3.957 5.8L17.753 1h3L14.27 8.778 21.247 19h-6.21l-4.18-6.126L5.753 19h-3l6.753-8.104ZM16.094 17 6.54 3h1.367l9.555 14h-1.367Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M4 21a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H4ZM15 22a1 1 0 1 1 2 0 1 1 0 0 1-2 0ZM20 21a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z",
shapeRendering: "geometricPrecision"
}));
}
TwitterCarousel.displayName = 'TwitterCarousel';
export default createBaseComponent(TwitterCarousel);