@grafana/ui
Version:
Grafana Components Library
25 lines (24 loc) • 929 B
TypeScript
import { GrafanaTheme2 } from '@grafana/data';
import { GaugeDimensions } from './utils';
export interface GlowGradientProps {
id: string;
radius: number;
}
export declare function GlowGradient({ id, radius }: GlowGradientProps): import("react/jsx-runtime").JSX.Element;
export declare function SpotlightGradient({ id, dimensions, roundedBars, angle, theme, }: {
id: string;
dimensions: GaugeDimensions;
angle: number;
roundedBars: boolean;
theme: GrafanaTheme2;
}): import("react/jsx-runtime").JSX.Element;
export declare function CenterGlowGradient({ gaugeId, color }: {
gaugeId: string;
color: string;
}): import("react/jsx-runtime").JSX.Element;
export interface CenterGlowProps {
dimensions: GaugeDimensions;
gaugeId: string;
color?: string;
}
export declare function MiddleCircleGlow({ dimensions, gaugeId, color }: CenterGlowProps): import("react/jsx-runtime").JSX.Element;