tutorbookapp/tutorbook

View on GitHub
components/icons/pause.tsx

Summary

Maintainability
A
1 hr
Test Coverage
export default function Pause(): JSX.Element {
  return (
    <svg
      viewBox='0 0 24 24'
      width='14'
      height='14'
      stroke='currentColor'
      strokeWidth='1.5'
      strokeLinecap='round'
      strokeLinejoin='round'
      shapeRendering='geometricPrecision'
      style={{ color: 'var(--on-background)' }}
    >
      <rect x='6' y='4' width='4' height='16' fill='currentColor' />
      <rect x='14' y='4' width='4' height='16' fill='currentColor' />
    </svg>
  );
}