Lambda-School-Labs/designhub-fe

View on GitHub
src/ASSETS/Icons/Link.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

const WebsiteLink = () => {
  return (
    <svg
      width="14"
      height="12"
      viewBox="0 0 14 12"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <g clipPath="url(#clip0)">
        <path
          d="M5.50146 6.5C5.73735 6.78706 6.03829 7.02459 6.38388 7.19647C6.72947 7.36835 7.11162 7.47056 7.50442 7.49616C7.89722 7.52177 8.29147 7.47018 8.66044 7.34489C9.02941 7.2196 9.36447 7.02353 9.64288 6.77L11.2907 5.27C11.7909 4.79849 12.0677 4.16699 12.0615 3.51149C12.0552 2.856 11.7664 2.22897 11.2572 1.76545C10.748 1.30193 10.0592 1.03901 9.33914 1.03331C8.61907 1.02762 7.92535 1.2796 7.40739 1.735L6.46267 2.59"
          stroke="#6D6D72"
          strokeLinecap="round"
          strokeLinejoin="round"
        />
        <path
          d="M7.69829 5.50001C7.46241 5.21294 7.16147 4.97541 6.81588 4.80354C6.47029 4.63166 6.08814 4.52945 5.69534 4.50384C5.30254 4.47823 4.90828 4.52982 4.53931 4.65512C4.17034 4.78041 3.83529 4.97647 3.55688 5.23001L1.9091 6.73001C1.40884 7.20151 1.13203 7.83302 1.13829 8.48851C1.14454 9.144 1.43337 9.77103 1.94256 10.2346C2.45174 10.6981 3.14055 10.961 3.86062 10.9667C4.58069 10.9724 5.27441 10.7204 5.79236 10.265L6.7316 9.41001"
          stroke="#6D6D72"
          strokeLinecap="round"
          strokeLinejoin="round"
        />
      </g>
      <defs>
        <clipPath id="clip0">
          <rect
            width="13.1822"
            height="12"
            fill="white"
            transform="translate(0.00878906)"
          />
        </clipPath>
      </defs>
    </svg>
  );
};

export default WebsiteLink;