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