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