@grafana/ui
Version:
Grafana Components Library
20 lines (19 loc) • 516 B
TypeScript
import { GrafanaTheme } from '@grafana/data';
export interface TableStyles {
cellHeight: number;
cellHeightInner: number;
cellPadding: number;
rowHeight: number;
table: string;
thead: string;
headerCell: string;
headerCellLabel: string;
tableCell: string;
tableCellWrapper: string;
tableCellLink: string;
row: string;
theme: GrafanaTheme;
resizeHandle: string;
overflow: string;
}
export declare const getTableStyles: (theme: GrafanaTheme) => TableStyles;