Lambda-School-Labs/designhub-fe

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

Summary

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

const InboxIcon = () => {
  return (
    <svg
      width="20"
      height="21"
      viewBox="0 0 20 21"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        d="M18.3334 10.7001H13.3334L11.6667 13.2001H8.33342L6.66675 10.7001H1.66675"
        strokeWidth="1.5"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
      <path
        d="M4.54175 4.95848L1.66675 10.7001V15.7001C1.66675 16.1422 1.84234 16.5661 2.1549 16.8787C2.46746 17.1912 2.89139 17.3668 3.33341 17.3668H16.6667C17.1088 17.3668 17.5327 17.1912 17.8453 16.8787C18.1578 16.5661 18.3334 16.1422 18.3334 15.7001V10.7001L15.4584 4.95848C15.3204 4.6808 15.1077 4.44712 14.8442 4.28371C14.5807 4.12031 14.2768 4.03365 13.9667 4.03348H6.03341C5.72334 4.03365 5.41947 4.12031 5.15595 4.28371C4.89244 4.44712 4.67973 4.6808 4.54175 4.95848V4.95848Z"
        strokeWidth="1.5"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </svg>
  );
};

export default InboxIcon;