@progress/kendo-react-conversational-ui
Version:
React Chat component allows the user to participate in chat sessions with users or chat bots. KendoReact Conversational UI components
37 lines (36 loc) • 823 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 f from "react";
import { Popup as l } from "@progress/kendo-react-popup";
const P = ({
show: e = !1,
anchor: t,
onOpen: r,
onClose: o,
animate: p = !0,
appendTo: m,
popupOptions: n = {},
children: u,
style: a
}) => /* @__PURE__ */ f.createElement(
l,
{
show: e,
anchor: t,
style: a,
animate: p,
appendTo: m,
onOpen: r,
onClose: o,
...n
},
u
);
export {
P as InlineAIPromptPopup
};