import { CSSProperties } from "react"; import styles from "./ProgressBar.module.css"; import { clamp } from "../../../features/_utils/math.utils"; interface ProgressBarProps { fillPercentage: number; fillColor?: string; backgroundColor?: string; align?: "left"; className?: string; } export function ProgressBar({ fillPercentage, fillColor, backgroundColor, align = "left", className = "" }: ProgressBarProps) { return (