UNPKG

react-simple-circular-progress

Version:
21 lines (20 loc) 625 B
import React from 'react'; type ColorPoint = [number, string]; export interface CircularProgressProps { style?: Record<string, string | number>; size: number; percent?: number; gapAngle?: number; backgroundBarColor?: string; progressBarWidth?: number; progressBarColor?: string | ColorPoint[]; progressBarOpacity?: number; progressFillColor?: string; scaleAngles?: number[]; scaleWidth?: number; scaleColor?: string; scaleOpacity?: number; svgExtraProps?: Record<string, any>; children?: React.ReactElement | ((props: any) => React.ReactElement<any>); } export {};