import { useStopwatch } from 'react-timer-hook'; import { TimerStyle, TimerWrapper } from './Timer'; import { Time } from './Time'; export const NegativeStopWatch = ({ autoStart = false, }: { autoStart?: boolean; }) => { // Initialize the timer using the useTimer hook. const { seconds, minutes, hours, isRunning, start, pause } = useStopwatch({ autoStart, }); return ( {'-'} ); };