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