UNPKG

@camtom/nyx-design-system

Version:

Nyx Design System - Sistema de diseño profesional para React con TypeScript, componentes accesibles y documentación completa

11 lines 566 B
import React, { ReactNode } from 'react'; export type TooltipPosition = 'top' | 'bottom' | 'left' | 'right' | 'left top' | 'left bottom' | 'right top' | 'right bottom' | 'top left' | 'top right' | 'bottom left' | 'bottom right'; export type TooltipVariant = 'default'; export interface TooltipProps { children: ReactNode; content: ReactNode; position?: TooltipPosition; variant?: TooltipVariant; } export declare const Tooltip: React.ForwardRefExoticComponent<TooltipProps & React.RefAttributes<HTMLDivElement>>; //# sourceMappingURL=Tooltip.d.ts.map