import { StatusProgressProps } from "@/constants/types"; export function StatusProgressRow({ label, value, total, barColor = "bg-[#17cbb5]" }: StatusProgressProps) { const percentage = (value / total) * 100; return (