import { Field, ProgressBar } from '@decky/ui'; import { FC } from 'react'; interface PluginInstallProgressProps { percentage: number; operationText: string | null; } const PluginInstallProgress: FC = ({ percentage, operationText }) => { return (
{operationText}
); }; export default PluginInstallProgress;