All files / src/assets/icons LinkedInIcon.tsx

50% Statements 1/2
0% Branches 0/4
0% Functions 0/1
50% Lines 1/2

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          519x                                                      
type FacebookIconProps = {
  width?: number | string;
  height?: number | string;
};
 
const LinkedInIcon = ({ height, width }: FacebookIconProps) => {
  return (
    <svg
      width={width || "58"}
      height={height || "58"}
      viewBox="0 0 58 58"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <rect x="3.84277" y="4" width="50" height="50" rx="25" fill="#1275B1" />
      <path
        d="M22.8045 17.736C22.8045 19.4049 21.358 20.7577 19.5736 20.7577C17.7893 20.7577 16.3428 19.4049 16.3428 17.736C16.3428 16.0672 17.7893 14.7144 19.5736 14.7144C21.358 14.7144 22.8045 16.0672 22.8045 17.736Z"
        fill="white"
      />
      <path
        d="M16.7846 22.9788H22.3074V39.7144H16.7846V22.9788Z"
        fill="white"
      />
      <path
        d="M31.1992 22.9788H25.6764V39.7144H31.1992C31.1992 39.7144 31.1992 34.4458 31.1992 31.1516C31.1992 29.1744 31.8743 27.1885 34.5681 27.1885C37.6124 27.1885 37.5941 29.776 37.5799 31.7806C37.5614 34.4009 37.6057 37.0748 37.6057 39.7144H43.1285V30.8817C43.0817 25.2418 41.6121 22.6431 36.7772 22.6431C33.906 22.6431 32.1262 23.9466 31.1992 25.1259V22.9788Z"
        fill="white"
      />
    </svg>
  );
};
 
export default LinkedInIcon;