Updated progress bars

This commit is contained in:
2026-02-14 17:19:22 -05:00
parent bcc5de6d7e
commit 61cceb41ba
11 changed files with 34 additions and 99 deletions

View File

@@ -1,21 +1,15 @@
import type { ThemedProgressProps } from "$/types/ProgressTypes";
import { forwardRef } from "react";
import Progress from "./Progress";
const WarningProgress = forwardRef<HTMLDivElement, ThemedProgressProps>(({
export default function WarningProgress({
...props
}, ref ) => {
}: Readonly<ThemedProgressProps>){
return (
<Progress
backgroundColor="var(--color-neutral)"
progressColor="var(--color-warning)"
ref={ref}
{...props}
/>
);
});
WarningProgress.displayName = "WarningProgress";
export default WarningProgress;
}