tutorbookapp/tutorbook

View on GitHub
components/icons/play.tsx

Summary

Maintainability
A
1 hr
Test Coverage
export default function Play(): 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)' }}
    >
      <polygon points='5 3 19 12 5 21 5 3' fill='currentColor' />
    </svg>
  );
}