Interface InfoTableSection

interface InfoTableSection {
    bullet?: string;
    color?: LiteralUnion<(keyof ForegroundColor), string>;
    emptyItemsText?: string;
    header: string;
    helperText?: string;
    items: Items;
}

Properties

bullet?: string
color?: LiteralUnion<(keyof ForegroundColor), string>
emptyItemsText?: string
header: string
helperText?: string
items: Items