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 TertiaryProgress = forwardRef<HTMLDivElement, ThemedProgressProps>(({
export default function TertiaryProgress({
...props
}, ref ) => {
}: Readonly<ThemedProgressProps>){
return (
<Progress
backgroundColor="var(--color-neutral)"
progressColor="var(--color-tertiary)"
{...props}
ref={ref}
/>
);
});
TertiaryProgress.displayName = "TertiaryProgress";
export default TertiaryProgress;
}