@shridey/intelligentable
Version:
Intelligentable is a highly customizable, fully-types, performant, and feature-rich React component library built on top of handpicked industry-level production-grade UI Components for modern web applications.
13 lines (12 loc) • 597 B
TypeScript
import type { IntelligentTableColumnType } from "./IntelligentTableColumnType";
import type { IntelligentTableLegendStyleType } from "./IntelligentTableLegendStyleType";
/**
* Props for rendering legends in IntelligentTable.
*
* @property {IntelligentTableColumnType[]} columns - The columns configuration for which legends are generated.
* @property {IntelligentTableLegendStyleType} [legendStyle] - Optional style configuration for the legends.
*/
export type IntelligentTableLegendsProps = {
columns: IntelligentTableColumnType[];
legendStyle?: IntelligentTableLegendStyleType;
};