UNPKG

@flanksource/clicky-ui

Version:

Flanksource Clicky UI — React component library built on shadcn/ui with light/dark and density theming.

13 lines 409 B
export type ProgressSegment = { count: number; color: string; label: string; }; export type ProgressBarProps = { segments: ProgressSegment[]; total: number; height?: string; className?: string; }; export declare function ProgressBar({ segments, total, height, className }: ProgressBarProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=ProgressBar.d.ts.map