@grafana/ui
Version:
Grafana Components Library
10 lines (9 loc) • 333 B
TypeScript
import React from 'react';
import { LegendComponentProps } from './Legend';
export interface LegendTableProps extends LegendComponentProps {
columns: string[];
sortBy?: string;
sortDesc?: boolean;
onToggleSort?: (sortBy: string) => void;
}
export declare const LegendTable: React.FunctionComponent<LegendTableProps>;