UNPKG

@adaptabletools/adaptable

Version:

Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

9 lines (8 loc) 321 B
import * as React from 'react'; export type NewTooltipProps = { label?: React.ReactNode; children: React.ReactNode; side?: 'top' | 'bottom' | 'left' | 'right'; align?: 'start' | 'center' | 'end'; }; export declare function NewTooltip({ label, children, side, align }: NewTooltipProps): React.JSX.Element;