fix(timer): use RefreshIcon instead of RotateCcwIcon
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { useState, useEffect, useCallback, useRef } from 'react';
|
import { useState, useEffect, useCallback, useRef } from 'react';
|
||||||
import { TimerIcon, PlayIcon, PauseIcon, RotateCcwIcon, XIcon } from '@/components/ui/Icons';
|
import { TimerIcon, PlayIcon, PauseIcon, RefreshIcon, XIcon } from '@/components/ui/Icons';
|
||||||
import { playTimerEnd } from '@/lib/sounds';
|
import { playTimerEnd } from '@/lib/sounds';
|
||||||
|
|
||||||
interface PomodoroTimerProps {
|
interface PomodoroTimerProps {
|
||||||
@@ -191,7 +191,7 @@ export default function PomodoroTimer({ isExpanded, onToggle }: PomodoroTimerPro
|
|||||||
className="p-2 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200"
|
className="p-2 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200"
|
||||||
aria-label="Reset timer"
|
aria-label="Reset timer"
|
||||||
>
|
>
|
||||||
<RotateCcwIcon size={18} />
|
<RefreshIcon size={18} />
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
|
|||||||
Reference in New Issue
Block a user