react-speedometer
Version:
Cool speedometer for React
16 lines (15 loc) • 408 B
TypeScript
import { SVGAttributes } from 'react';
interface ContextProps {
currentFillAngle: number;
radius: number;
rotation: number;
min: number;
max: number;
angle: number;
lineCap: SVGAttributes<SVGPathElement>['strokeLinecap'];
accentColor: string;
fontFamily: string;
value: number;
}
declare const _default: import("react").Context<ContextProps>;
export default _default;