UNPKG

@grafana/ui

Version:
14 lines (13 loc) 538 B
import { RadialColorDefs } from './RadialColorDefs'; import { GaugeDimensions } from './utils'; export interface RadialBarProps { dimensions: GaugeDimensions; colorDefs: RadialColorDefs; angleRange: number; angle: number; startAngle: number; roundedBars?: boolean; spotlightStroke: string; glowFilter?: string; } export declare function RadialBar({ dimensions, colorDefs, angleRange, angle, startAngle, roundedBars, spotlightStroke, glowFilter, }: RadialBarProps): import("react/jsx-runtime").JSX.Element;