MCPcopy Create free account
hub / github.com/bytebase/dbhub / ProgressIndicator

Function ProgressIndicator

frontend/src/components/ui/progress.tsx:52–63  ·  view source on GitHub ↗
({
  className,
  ...props
}: ProgressPrimitive.Indicator.Props)

Source from the content-addressed store, hash-verified

50}
51
52function ProgressIndicator({
53 className,
54 ...props
55}: ProgressPrimitive.Indicator.Props) {
56 return (
57 <ProgressPrimitive.Indicator
58 className={cn("bg-primary transition-all duration-500", className)}
59 data-slot="progress-indicator"
60 {...props}
61 />
62 );
63}
64
65function ProgressValue({ className, ...props }: ProgressPrimitive.Value.Props) {
66 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected