UNPKG

its-just-ui

Version:

ITS Just UI - React 18 & React 19 UI component library. 36+ accessible, TypeScript-native components with Tailwind CSS. Zero-config Material UI alternative for SaaS dashboards and enterprise apps.

15 lines (13 loc) 498 B
import { TooltipSize, TooltipVariant, TooltipStatus, TooltipPlacement } from './types'; export interface TooltipContextValue { isOpen: boolean; disabled: boolean; size: TooltipSize; variant: TooltipVariant; status: TooltipStatus; placement: TooltipPlacement; onOpenChange?: (isOpen: boolean) => void; triggerProps: React.HTMLAttributes<HTMLElement>; contentId: string; } export declare const TooltipContext: import('react').Context<TooltipContextValue | null>;