tutorbookapp/tutorbook

View on GitHub
components/icons/refresh.tsx

Summary

Maintainability
A
0 mins
Test Coverage
export default function Refresh(): JSX.Element {
  return (
    <svg
      viewBox='0 0 24 24'
      width='12'
      height='12'
      stroke='currentColor'
      strokeWidth='1.5'
      strokeLinecap='round'
      strokeLinejoin='round'
      fill='none'
      shapeRendering='geometricPrecision'
      style={{ color: 'currentColor' }}
    >
      <path d='M23 4v6h-6' />
      <path d='M20.49 15a9 9 0 11-2.12-9.36L23 10' />
    </svg>
  );
}