UNPKG

nextuiq

Version:

NextUIQ is a modern, lightweight, and developer-friendly UI component library for React and Next.js. Built with TypeScript and Tailwind CSS, it offers customizable, accessible, and performance-optimized components with built-in dark mode, theme customizat

20 lines (19 loc) 526 B
import { ReactNode } from 'react'; export interface TooltipProps { content: ReactNode; disabled?: boolean; delayDuration?: number; children: ReactNode; side?: 'top' | 'right' | 'bottom' | 'left'; align?: 'start' | 'center' | 'end'; } export interface TooltipTriggerProps { children: ReactNode; className?: string; } export interface TooltipContentProps { children: ReactNode; className?: string; side?: 'top' | 'right' | 'bottom' | 'left'; align?: 'start' | 'center' | 'end'; }