UNPKG

@reactodia/workspace

Version:

Reactodia Workspace -- library for visual interaction with graphs in a form of a diagram.

9 lines 342 B
export interface ProgressBarProps { state: ProgressState; title: string; percent?: number; height?: number; } export type ProgressState = 'none' | 'loading' | 'error' | 'completed'; export declare function ProgressBar(props: ProgressBarProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=progressBar.d.ts.map