UNPKG

sisyphus-progressbar

Version:

A animated progress bar inspired by the myth of Sisyphus, featuring physics-based animations and philosophical quotes

10 lines (9 loc) 394 B
import React from 'react'; export interface SisyphusProgressBarProps { /** External progress value between 0-100. If provided, component will be controlled. */ progress?: number; /** Whether to show the percentage display. Default is true. */ showPercentage?: boolean; } declare const SisyphusProgressBar: React.FC<SisyphusProgressBarProps>; export default SisyphusProgressBar;