setup: shadcn/ui components + type definitions + mock data layer

This commit is contained in:
zetaloop
2026-02-20 13:27:02 +08:00
parent 3093da1665
commit 02cd8a23df
27 changed files with 2636 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
"use client"
import { Progress as ProgressPrimitive } from "radix-ui"
import type * as React from "react"
import { cn } from "@/lib/utils"
function Progress({
className,
value,
...props
}: React.ComponentProps<typeof ProgressPrimitive.Root>) {
return (
<ProgressPrimitive.Root
data-slot="progress"
className={cn("bg-primary/20 relative h-2 w-full overflow-hidden rounded-full", className)}
{...props}
>
<ProgressPrimitive.Indicator
data-slot="progress-indicator"
className="bg-primary h-full w-full flex-1 transition-all"
style={{ transform: `translateX(-${100 - (value || 0)}%)` }}
/>
</ProgressPrimitive.Root>
)
}
export { Progress }