UNPKG

its-just-ui

Version:

ITS Just UI - The easiest and best React UI component library. Modern, accessible, and customizable components built with TypeScript and Tailwind CSS. Simple to use, production-ready components for building beautiful user interfaces with ease.

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>;