@conductionnl/nl-design-system
Version:
NL design system components created by Conduction
26 lines (25 loc) • 622 B
TypeScript
/// <reference types="react" />
interface ProgressBarProps {
height?: string;
progress: string;
progressMin?: string;
progressMax?: string;
label?: string;
bgColor?: string;
}
/**
* This components handles the progress bar.
* @returns TSX of the progress bar.
*/
export declare function ProgressBarComponent(props: ProgressBarProps): JSX.Element;
export declare namespace ProgressBarComponent {
var defaultProps: {
height: string;
progress: string;
progressMin: string;
progressMax: string;
label: string;
bgColor: string;
};
}
export {};