import { cn } from '@/shared/lib/cn'; import { Restart30sAction } from '@/features/restart-30s'; interface SpaceTimerHudWidgetProps { timerLabel: string; goal: string; className?: string; isImmersionMode?: boolean; } const HUD_ACTIONS = [ { id: 'start', label: '시작', icon: '▶' }, { id: 'pause', label: '일시정지', icon: '⏸' }, { id: 'reset', label: '리셋', icon: '↺' }, ] as const; export const SpaceTimerHudWidget = ({ timerLabel, goal, className, isImmersionMode = false, }: SpaceTimerHudWidgetProps) => { return (
목표: {goal}