interface TextCellProps {
    isNumeric?: boolean;
    label: ReactNode;
    typographyProps?: TypographyProps;
    verticalPadding?: "12" | "24";
}

Hierarchy (view full)

Properties

isNumeric?: boolean

When true, render this as a number (10000 -> 10,000)

label: ReactNode

Label to render in this cell

typographyProps?: TypographyProps

Configuration for the typography of this label

verticalPadding?: "12" | "24"

Padding size for the cell

Generated using TypeDoc