react-native-circular-gradient-progress
Version:
Display progress in a circle fashion
15 lines (14 loc) • 419 B
TypeScript
import React from "react";
export interface GradientCircularProgressProps {
progress: number;
size: number;
startColor: string;
endColor: string;
middleColor: string;
id?: string;
strokeWidth?: number;
emptyColor?: string;
withSnail?: boolean;
}
declare const GradientCircularProgress: React.FunctionComponent<GradientCircularProgressProps>;
export default GradientCircularProgress;