UNPKG

@progress/kendo-react-notification

Version:

React Notification renders a message to the user with information about the status of an app process. KendoReact Notification package

56 lines (55 loc) 1.71 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { default as PropTypes } from 'prop-types'; import * as React from 'react'; /** * Represents the props of the [KendoReact NotificationGroup component](https://www.telerik.com/kendo-react-ui/components/notification/api/notificationgroup). */ export interface NotificationGroupProps { /** * @hidden */ children?: React.ReactNode; /** * Sets additional classes to the NotificationGroup. * * @example * ```jsx * <NotificationGroup className="custom-class" /> * ``` */ className?: string; /** * The styles that are applied to the NotificationGroup. * * @example * ```jsx * <NotificationGroup style={{ backgroundColor: 'lightgray' }} /> * ``` */ style?: React.CSSProperties; } /** * The default props of the NotificationGroup component. * * @hidden */ export declare const notificationGroupDefaultProps: { style: {}; }; /** * Represents the [KendoReact NotificationGroup component](https://www.telerik.com/kendo-react-ui/components/notification/api/notificationgroup). */ export declare const NotificationGroup: { (props: NotificationGroupProps): React.JSX.Element; displayName: string; propTypes: { className: PropTypes.Requireable<string>; style: PropTypes.Requireable<object>; }; };