UNPKG

@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.

12 lines (11 loc) 587 B
import type { CSSProperties } from "react"; /** * Configuration for the legend label styling in IntelligentTable legends. * * @type {Object} IntelligentTableLegendLabelType * @property {string} [color] - Text color of the legend label. * @property {string | number} [fontSize] - Font size of the legend label. * @property {string | number} [fontWeight] - Font weight of the legend label. * @property {string} [fontFamily] - Font family of the legend label. */ export type IntelligentTableLegendLabelType = Pick<CSSProperties, "color" | "fontSize" | "fontWeight" | "fontFamily">;