UNPKG

@papernote/ui

Version:

A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive

9 lines 360 B
import React from 'react'; export interface TooltipProps { children: React.ReactNode; content: React.ReactNode; position?: 'top' | 'bottom' | 'left' | 'right'; delay?: number; } export default function Tooltip({ children, content, position, delay, }: TooltipProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Tooltip.d.ts.map