Lambda-School-Labs/designhub-fe

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

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
const CreateNewProjectIcon = () => {
  return (
    <svg
      width="21"
      height="21"
      viewBox="0 0 21 21"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        d="M16.4593 2.58347H4.79264C3.87217 2.58347 3.12598 3.32966 3.12598 4.25013V15.9168C3.12598 16.8373 3.87217 17.5835 4.79264 17.5835H16.4593C17.3798 17.5835 18.126 16.8373 18.126 15.9168V4.25013C18.126 3.32966 17.3798 2.58347 16.4593 2.58347Z"
        strokeWidth="1.5"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
      <path
        d="M10.626 6.75013V13.4168"
        strokeWidth="1.5"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
      <path
        d="M7.29272 10.0835H13.9594"
        strokeWidth="1.5"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </svg>
  );
};

export default CreateNewProjectIcon;