@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
36 lines (35 loc) • 940 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import * as i from "react";
import e from "prop-types";
const p = {
style: {}
}, o = (s) => {
const { style: r = p.style, className: t, children: a } = s;
return /* @__PURE__ */ i.createElement(
"div",
{
className: "k-notification-group" + (t ? ` ${t}` : ""),
style: {
alignItems: "center",
flexWrap: "wrap",
...r
}
},
a
);
};
o.displayName = "NotificationGroup";
o.propTypes = {
className: e.string,
style: e.object
};
export {
o as NotificationGroup,
p as notificationGroupDefaultProps
};