import * as Popover from '@radix-ui/react-popover'; import { cn } from '~/utils'; const Wrapper = ({ popover, children }: { popover: boolean; children: React.ReactNode }) => { if (popover) { return (
{children}
); } return (
{children}
); }; export default function ProgressText({ progress, onClick, inProgressText, finishedText, hasInput = true, popover = false, }: { progress: number; onClick: () => void; inProgressText: string; finishedText: string; hasInput?: boolean; popover?: boolean; }) { return ( ); }