@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.39 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 TwitterLike({
width = '20',
height = '20',
viewBox = '0 0 20 20',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "TwitterLike",
"data-group": "twitter",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M13.75 2c2.347.002 4.248 1.904 4.25 4.25 0 5.403-5.882 10.75-8 10.75-2.118 0-8-5.347-8-10.749 0-1.57.865-3.012 2.25-3.75 2.071-1.105 4.646-.321 5.75 1.75.739-1.384 2.181-2.25 3.75-2.251zm-3.75 14c1.522 0 7-4.839 7-9.75-.003-1.468-.988-2.752-2.406-3.134-1.734-.468-3.519.56-3.986 2.294-.057.222-.23.396-.452.452-.336.086-.677-.116-.763-.452-.381-1.421-1.668-2.409-3.139-2.41-1.796-.001-3.253 1.454-3.254 3.25 0 4.911 5.478 9.75 7 9.75z",
shapeRendering: "geometricPrecision"
}));
}
TwitterLike.displayName = 'TwitterLike';
export default createBaseComponent(TwitterLike);