Improvements again

This commit is contained in:
2026-02-14 13:25:07 -07:00
parent 81d47ea71d
commit fa67d26fe9
12 changed files with 22 additions and 38 deletions

View File

@@ -0,0 +1,17 @@
type ProgressBarProps = {
progress: number
className?: string
}
export default function ProgressBar ({ progress, className }: ProgressBarProps) {
return (
<div
className={`w-full bg-(--col1) border border-(--col5) rounded-full h-4 overflow-hidden ${className}`}
>
<div
className='bg-(--col8) border-r border-r-(--col5) h-full'
style={{ width: `${progress}%` }}
/>
</div>
)
}