@progress/kendo-angular-conversational-ui
Version:
Kendo UI for Angular Conversational UI components
20 lines (19 loc) • 689 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { SVGIcon } from '@progress/kendo-svg-icons';
export interface MessageStatus {
/**
* Sets the text for the message status.
*/
text?: string;
/**
* Sets the icon for the message status.
*/
icon?: string;
/**
* Sets the SVG icon for the message status.
*/
svgIcon?: SVGIcon;
}