/**----------------------------------------------------------------------------------------- * 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; }