InfoCardFields

Field mappings for ItemCard display

Definition

export interface InfoCardFields {
    /**
     * Field name for image URL or icon pattern
     */
    image?: string;

    /**
     * Field name for title text
     */
    title?: string;

    /**
     * Field name for subtitle text
     */
    subtitle?: string;

    /**
     * Field name for name (used for initials if no image)
     */
    name?: string;
}

Usage

Last updated