@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.44 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 LinkedInLike({
width = '18',
height = '18',
viewBox = '0 0 18 18',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "LinkedInLike",
"data-group": "linkedin",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M13.6 8h2.4v7h-2.8l-2.1.701c-.6.199-1.2.299-2.1.299h-2.7c-.6 0-1.3-.4-1.5-1-.1-.4-.1-.7 0-1-.7-.1-1.3-.7-1.3-1.5 0-.2.1-.5.2-.7-.4-.3-.7-.8-.7-1.3 0-.4.1-.7.4-1-.3-.3-.4-.6-.4-1 0-.8.7-1.5 1.5-1.5h3l-.2-.7c-.2-.6-.3-1.3-.3-1.9v-.4c0-1.1.9-2 2-2h1.8l.2 1.1c.2.6.4 1.2.7 1.7l1.9 3.2zm-8.2 3.1v.7c-.1.3.1.6.3.8l.6.5.1.5c.1.2.3.4.5.4h2.8c.4 0 .8-.1 1.2-.2l2.5-.8h.6v-3h-1.3l-2.6-4.3c-.3-.5-.6-1.3-.7-2h-.1c-.2 0-.4.2-.4.4v.3c0 .4 0 .9.1 1.3l1.1 3.3h-5.1l-.1.9c-.1.301 0 .5.1.7l.4.5z",
shapeRendering: "geometricPrecision"
}));
}
LinkedInLike.displayName = 'LinkedInLike';
export default createBaseComponent(LinkedInLike);