Files
ersatztv/design-system/components/data-display/ProgressBar.d.ts
T
2026-07-02 07:37:00 +02:00

17 lines
475 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import * as React from "react";
export interface ProgressBarProps {
/** 0100. Pass null/undefined for an indeterminate sweep. */
value?: number | null;
tone?: "accent" | "ok" | "warn" | "error";
height?: number;
/** Append a mono percentage on the right. */
showLabel?: boolean;
style?: React.CSSProperties;
}
/**
* Slim progress bar for library scans, playout builds and transcodes.
*/
export function ProgressBar(props: ProgressBarProps): JSX.Element;