@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.
11 lines (10 loc) • 328 B
TypeScript
/**
* Represents a single legend item in IntelligentTable.
*
* @property {string | undefined} label - The label text for the legend.
* @property {string | undefined} color - The color associated with the legend.
*/
export type IntelligentTableLegendType = {
label: string | undefined;
color: string | undefined;
};