Utilities
Tooltip Provider

Tooltip provider

Lualtek UI provides a full featured tooltip system. By wrapping your application within TooltipProvider tooltips can be placed correctly taking care of collisions. This provider allows tooltips to be configured globally.

Anatomy

import { TooltipProvider } from "@lualtek/react-components";
 
export default () => (
  <TooltipProvider>
    <App />
  </TooltipProvider>
);

API Reference

This component relies on Radix UI's TooltipProvider component. Please refer to their documentation (opens in a new tab) for more information.