UNPKG

@mongez/react-components

Version:

Beautiful and simple ready React Components for quick production.

35 lines 835 B
export type ProgressProps = { /** * If set to true, the progress bar will be animated and stop at 100 until * it is set to false again. */ loading?: boolean; /** * Control the progress value */ value?: number; /** * Progress Bar height */ height?: number; /** * Progress Bar glow height */ glow?: number; /** * The color of the progress bar */ color?: string; /** * The color of the progress bar glow effect */ glowColor?: string; /** * Z index of the progress bar * * @default 1000 */ zIndex?: number; }; export default function Progress({ loading: incomingLoading, value: incomingProgress, height, glow, zIndex, color, glowColor, }: ProgressProps): any; //# sourceMappingURL=Progress.d.ts.map