@wandelbots/wandelbots-js-react-components
Version:
React UI toolkit for building applications on top of the Wandelbots platform
19 lines • 855 B
TypeScript
import type { TimerProps } from "./types";
/**
* A simple count-up timer component with visual progress indication
*
* Features:
* - Count-up timer that tracks elapsed time
* - Visual progress gauge that cycles every minute
* - Two display variants: large circular gauge (default) or small icon with text
* - Full timer control: start, pause, resume, reset functionality
* - Support for starting with elapsed time (resume mid-session)
* - Error state support: pauses timer and shows error styling
* - Smooth progress animations with spring physics
* - Fully localized with i18next
* - Material-UI theming integration
*/
export declare const Timer: (({ onTimerReady, autoStart, variant, compact, className, hasError, }: TimerProps) => import("react/jsx-runtime").JSX.Element) & {
displayName: string;
};
//# sourceMappingURL=index.d.ts.map