UNPKG

pomo-tui

Version:

> A beautiful terminal-based Pomodoro timer built with React Ink

9 lines (8 loc) 262 B
import React from 'react'; import { GradientTheme } from './colors.js'; interface StopWatchProps { onActiveChange?: (isActive: boolean) => void; initialTheme?: GradientTheme; } declare const StopWatch: React.FC<StopWatchProps>; export default StopWatch;