tutorbookapp/tutorbook

View on GitHub
components/icons/select.tsx

Summary

Maintainability
A
3 hrs
Test Coverage
export default function Select(): 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='M17 8.517L12 3 7 8.517M7 15.48l5 5.517 5-5.517' />
    </svg>
  );
}