react-speedometer
Version:
Cool speedometer for React
9 lines (8 loc) • 322 B
TypeScript
import { SVGAttributes } from 'react';
interface ProgressProps extends SVGAttributes<SVGPathElement> {
color?: string;
arcWidth?: number;
lineCap?: SVGAttributes<SVGPathElement>['strokeLinecap'];
}
export default function Progress({ color, arcWidth, lineCap, ...rest }: ProgressProps): JSX.Element;
export {};