@progress/kendo-react-tooltip
Version:
React Tooltips library represents popups with information that is related to a UI element. KendoReact Tooltips package
17 lines (16 loc) • 640 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
*-------------------------------------------------------------------------------------------
*/
"use client";
import { Tooltip as p } from "./tooltip/Tooltip.mjs";
import { Popover as t } from "./popover/Popover.mjs";
import { PopoverActionsBar as m } from "./popover/PopoverActionsBar.mjs";
export {
t as Popover,
m as PopoverActionsBar,
p as Tooltip
};