Lambda-School-Labs/designhub-fe

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

Summary

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

const MyProjectsIcon = () => {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      width="20"
      height="20"
      viewBox="0 0 24 24"
      fill="none"
      stroke="currentColor"
      strokeWidth="1.5"
      strokeLinecap="round"
      strokeLinejoin="round"
      className="feather feather-compass"
    >
      <circle cx="12" cy="12" r="10"></circle>
      <polygon points="16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"></polygon>
    </svg>
  );
};

export default MyProjectsIcon;