Progress UI component for React providing customizable line and circle progress bars
Overall
score
100%
A React component that displays a dashboard-style gauge using a semi-circular progress indicator with gradient coloring.
value prop (0-100) that controls the current gauge position @test@generates
import React from 'react';
export interface DashboardGaugeProps {
value: number; // Progress value from 0 to 100
}
export function DashboardGauge(props: DashboardGaugeProps): React.ReactElement;Provides circular progress visualization with gradient support and gap positioning.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/npm-rc-progressdocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10