All files / src/components/Icons/Social/LinkedinIcon LinkedinIcon.jsx

0% Statements 0/4
100% Branches 0/0
0% Functions 0/1
0% Lines 0/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38                                                                           
import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
 
class LinkedinIcon extends PureComponent {
  static propTypes = {
    className: PropTypes.string,
    style: PropTypes.shape({}),
  };
 
  static defaultProps = {
    className: '',
    style: {},
  };
 
  render() {
    const { className, style } = this.props;
 
    return (
      <svg
        viewBox="0 0 81.440002 72"
        className={className}
        style={style}
      >
        <g>
          <path
            d="M77.89946472 58.58600034h-.61399999v-1.24479997h.77853332c.40213332 0 .86306664.06506666.86306664.59106665 0 .60519998-.46453332.65373332-1.02759997.65373332zm.61093332.36973332c.62079998-.07657333.9453333-.41826666.9453333-.9921333 0-.7016-.42453332-1.04173332-1.2969333-1.04173332h-1.4009333v3.68334658h.5276v-1.6026133h.65199998l.01466666.01822667 1.00879998 1.58438663h.56506665l-1.08586664-1.64062663.07026667-.00885333"
          />
          <path
            d="M77.95839805 61.79688026c-1.66666662 0-2.97559992-1.31614664-2.97559992-3.02865326 0-1.70835996 1.3089333-3.0270266 2.97559992-3.0270266 1.67079996 0 2.97759993 1.31866664 2.97759993 3.0270266 0 1.71250662-1.30679997 3.02865326-2.97759993 3.02865326zm0-6.51301318c-1.95573328 0-3.48866658 1.53119997-3.48866658 3.48435992 0 1.95573328 1.5329333 3.48437324 3.48866658 3.48437324 1.95559995 0 3.48853325-1.52863996 3.48853325-3.48437324 0-1.95315995-1.5329333-3.48435992-3.48853325-3.48435992M61.3541318 61.35156027H50.67973207V44.64160068c0-3.98533323-.0704-9.11039977-5.54946653-9.11039977-5.5573332 0-6.40519984 4.34373323-6.40519984 8.82399978v16.99635958H28.05106597V26.99160113H38.2926657v4.69853321h.14746666c1.42546663-2.7026666 4.90879988-5.54946653 10.10413308-5.54946653 10.81413307 0 12.80986635 7.11399983 12.80986635 16.36613293zm-45.3421322-39.0542257c-3.42241325 0-6.18907985-2.77439992-6.18907985-6.1910665 0-3.42026659 2.7666666-6.19479985 6.18907985-6.19479985 3.41346658 0 6.18853318 2.77453326 6.18853318 6.19479984 0 3.41666659-2.7750666 6.19106652-6.18853318 6.19106652zm5.34066653 39.0542257h-10.6818264V26.99160113h10.6818264zM66.671865.0000018H5.31354653C2.38281327.0000018 0 2.32493508 0 5.192135v61.61255846C0 69.67188006 2.38281327 72 5.31354653 72H66.671865c2.9374666 0 5.32546653-2.32811994 5.32546653-5.19530654V5.192135c0-2.86719992-2.38799994-5.1921332-5.32546653-5.1921332"
          />
        </g>
      </svg>
    );
  }
}
 
export default LinkedinIcon;