New to KendoReactStart a free 30-day trial

MessageStatus

Interface

Configuration for message status display with optional icon.

Definition

Package:@progress/kendo-react-conversational-ui

Properties

icon?

string

Sets the name of a font icon from the Kendo UI theme for the message status.

Example:
tsx
const message: Message = {
  status: { text: 'Seen', icon: 'k-icon k-font-icon k-i-loading' }
};

svgIcon?

SVGIcon

Sets an SVG icon to display inside the message status.

Example:
tsx
import { eyeIcon } from '@progress/kendo-svg-icons';

const message: Message = {
  status: { text: 'Seen', svgIcon: eyeIcon }
};

text?

string

Sets the text for the message status.

Example:
tsx
const message: Message = {
  status: { text: 'Seen' }
};
In this article
DefinitionPropertiesicon?svgIcon?text?
Not finding the help you need?
Contact Support