import { ProgressBarProps } from "@/types/types"; export function ProgressBarRow({ label, value, maxValue }: ProgressBarProps) { const percentage = (value / maxValue) * 100; return (