tutorbookapp/tutorbook

View on GitHub
components/icons/system.tsx

Summary

Maintainability
A
3 hrs
Test Coverage
export default function System(): JSX.Element {
  return (
    <svg
      viewBox='0 0 24 24'
      width='16'
      height='16'
      stroke='currentColor'
      strokeWidth='1.5'
      strokeLinecap='round'
      strokeLinejoin='round'
      fill='none'
      shapeRendering='geometricPrecision'
      style={{ color: 'currentColor' }}
    >
      <path d='M2 13.381h20M8.66 19.05V22m6.84-2.95V22m-8.955 0h10.932M4 19.05h16a2 2 0 002-2V4a2 2 0 00-2-2H4a2 2 0 00-2 2v13.05a2 2 0 002 2z' />
    </svg>
  );
}