@grafana/ui
Version:
Grafana Components Library
11 lines (10 loc) • 419 B
TypeScript
import { GaugeDimensions } from './utils';
export interface RadialArcPathProps {
startAngle: number;
dimensions: GaugeDimensions;
color: string;
glowFilter?: string;
arcLengthDeg: number;
roundedBars?: boolean;
}
export declare function RadialArcPath({ startAngle: angle, dimensions, color, glowFilter, arcLengthDeg, roundedBars, }: RadialArcPathProps): import("react/jsx-runtime").JSX.Element;