import React from '@theia/core/shared/react'; export type ProgressBarProps = { percent?: number; showPercentage?: boolean; }; export default function ProgressBar({ percent = 0, showPercentage = false, }: ProgressBarProps): React.ReactElement { const roundedPercent = Math.round(percent); return (
{showPercentage && (
{roundedPercent}%
)}
); }