Represents a chip in a list.

interface IListChip<RowData extends IRowData = IAnything> {
    color?: string;
    enabled?: boolean;
    label: string;
    name: keyof RowData;
}

Type Parameters

  • RowData extends IRowData = IAnything

    The type of the row data associated with the chip.

Properties

color?: string
enabled?: boolean
label: string
name: keyof RowData