ProgressBar
@spartanfx/react / index / ProgressBar
Variable: ProgressBar
const ProgressBar: React.FunctionComponent<IProgressBarProps>;
Renders a customizable progress bar with optional labels, percentage/value display, and styling hooks.
Useful in file uploads, task completion indicators, and asynchronous operations in SharePoint or general React apps.
Example
<ProgressBar
label="Uploading..."
current={30}
total={100}
showValue
showAsPercentage
/>