Skip to content

ProgressBar

ProgressBar is a widget that provides a progress bar that you can use in your application.

Example

example_progressBar.tsx
import { ProgressBar } from '@vixen-js/core-react';
export function ProgressBarExample() {
return (
<ProgressBar value={50} min={0} max={100} />
);
}

Learn more about ProgressBar