@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.4 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 LinkedInView({
width = '18',
height = '18',
viewBox = '0 0 18 18',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "LinkedInView",
"data-group": "linkedin",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M9 15c-2.803 0-5.758-1.665-8.547-4.815-.604-.688-.603-1.684.001-2.369 2.788-3.151 5.743-4.816 8.546-4.816 2.805 0 5.76 1.665 8.547 4.816v.001c.604.686.604 1.682-.001 2.368-2.787 3.15-5.741 4.815-8.546 4.815zm-6.924-6c1.673 1.858 4.196 4 6.924 4 2.146 0 4.599-1.419 6.924-4-2.325-2.581-4.779-4-6.924-4-2.145 0-4.598 1.419-6.924 4zm6.924 3c-1.654 0-3-1.346-3-3s1.346-3 3-3v2c-.552 0-1 .448-1 1s.448 1 1 1 1-.448 1-1h2c0 1.654-1.346 3-3 3z",
shapeRendering: "geometricPrecision"
}));
}
LinkedInView.displayName = 'LinkedInView';
export default createBaseComponent(LinkedInView);