@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.36 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 LinkedIn({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "LinkedIn",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M4.273 6.545a2.272 2.272 0 1 0 0-4.544 2.272 2.272 0 0 0 0 4.544Zm8.673 2.365a.91.91 0 0 0-.909-.91H9.393a.91.91 0 0 0-.909.91v12.18c0 .502.271.91.773.91h2.834a.91.91 0 0 0 .909-.91v-6.393c0-4.072 4.5-3.947 4.5 0v6.394c0 .502.453.909.954.909h2.637a.91.91 0 0 0 .909-.91v-7.9c0-6.852-7.227-6.602-9.054-3.23V8.91Zm-6.43 0a.91.91 0 0 0-.91-.91H2.91a.91.91 0 0 0-.91.91v12.18c0 .503.407.91.91.91h2.697a.91.91 0 0 0 .909-.91V8.91Z",
shapeRendering: "geometricPrecision"
}));
}
LinkedIn.displayName = 'LinkedIn';
export default createBaseComponent(LinkedIn);