UNPKG

@wonderflow/react-components

Version:

UI components from Wonderflow's Wanda design system

31 lines 976 B
/// <reference types="react" /> export declare type CircularProgressProps = { /** * Set the current progress of the progress bar. * This value should be between 0 and 'max'. The percentage is * automatically computed. */ value: number; /** * Set the max value of the progress bar. This determines the * computed percentage. */ max?: number; /** * Set the dimension of the progress bar. */ dimension?: 'small' | 'regular' | 'big'; /** * Show or hide the progress value. */ showProgress?: boolean; /** * Show or hide the percent sign next to the value. */ showPercentSign?: boolean; }; export declare const CircularProgress: import("react").ForwardRefExoticComponent<{ style?: Record<string, any> | undefined; className?: string | undefined; } & CircularProgressProps & import("react").RefAttributes<HTMLDivElement>>; //# sourceMappingURL=circular-progress.d.ts.map