@spicy-ui/core
Version:
A themable and extensible React UI library, ready to use out of the box
9 lines (8 loc) • 324 B
TypeScript
import * as React from 'react';
import { PopperProps } from '../../hooks';
import { ChildrenProp } from '../../types';
export interface TooltipProps extends Pick<PopperProps, 'placement' | 'offset'>, ChildrenProp {
isDisabled?: boolean;
label: string;
}
export declare const Tooltip: React.FC<TooltipProps>;