Progress UI component for React providing customizable line and circle progress bars
Overall
score
100%
Build a React component that displays a circular progress indicator with a smooth color gradient that transitions around the circle's perimeter.
Create a GradientProgress component that:
interface GradientProgressProps {
percent: number; // Progress value from 0 to 100
}
export function GradientProgress(props: GradientProgressProps): JSX.Element;@generates
Provides React progress UI components with support for circular progress indicators and gradient rendering.
This package should be installed as a dependency (not devDependency).
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