@grafana/ui
Version:
Grafana Components Library
22 lines (21 loc) • 894 B
TypeScript
import { GrafanaTheme2, ThemeRichColor, ThemeVizHue } from '@grafana/data';
export declare const ThemeDemo: () => import("react/jsx-runtime").JSX.Element;
interface VizHuesDemoProps {
color: ThemeVizHue;
theme: GrafanaTheme2;
}
export declare function VizHuesDemo({ theme, color }: VizHuesDemoProps): import("react/jsx-runtime").JSX.Element;
interface RichColorDemoProps {
theme: GrafanaTheme2;
color: ThemeRichColor;
}
export declare function RichColorDemo({ theme, color }: RichColorDemoProps): import("react/jsx-runtime").JSX.Element;
export declare function TextColors({ t }: {
t: GrafanaTheme2;
}): import("react/jsx-runtime").JSX.Element;
export declare function ShadowDemo({ name, shadow }: {
name: string;
shadow: string;
}): import("react/jsx-runtime").JSX.Element;
export declare function ActionsDemo(): import("react/jsx-runtime").JSX.Element;
export {};