@progress/kendo-angular-conversational-ui
Version:
Kendo UI for Angular Conversational UI components
25 lines (24 loc) • 1 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ButtonSettings } from '@progress/kendo-angular-buttons';
import { SVGIcon } from '@progress/kendo-angular-icons';
/**
* Defines the settings for the Send button in the Chat component.
* Customize these settings to change the button appearance and behavior.
*/
export interface SendButtonSettings extends ButtonSettings {
/**
* Sets the CSS class applied to the Button.
*/
buttonClass?: string;
/**
* Sets the icon displayed while the Chat is in loading state.
*/
loadingIcon?: string;
/**
* Sets the SVG icon displayed while the Chat is in loading state.
*/
loadingSVGIcon?: SVGIcon;
}