@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
16 lines (12 loc) • 467 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { AllHTMLAttributes } from 'react';
interface ProgressProps extends AllHTMLAttributes<HTMLDivElement> {
getValueLabel?: ((value: number, max: number) => string) | null;
max?: number;
value?: number;
}
declare const Progress: {
({ getValueLabel, max, value, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
displayName: string;
};
export { Progress, type ProgressProps };