@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.15 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 LinkedInShare({
width = '18',
height = '18',
viewBox = '0 0 18 18',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "LinkedInShare",
"data-group": "linkedin",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M16.7 7.3c.4.4.4 1.1 0 1.4l-6.7 6.3v-4h-3.5c-2.2 0-4.1 1.8-4.1 4h-1.4v-3c0-3.9 3.1-7 7-7h2v-4l6.7 6.3zm-4.7 3.3l2.7-2.6-2.7-2.6v1.6h-4c-2.1 0-3.9 1.2-4.8 3.1 1-.7 2.2-1.1 3.4-1.1h5.4v1.6z",
shapeRendering: "geometricPrecision"
}));
}
LinkedInShare.displayName = 'LinkedInShare';
export default createBaseComponent(LinkedInShare);