You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
522 B
13 lines
522 B
import * as React from 'react';
|
|
import { OverlayArrowProps } from '@restart/ui/Overlay';
|
|
import { Placement, PopperRef } from './types';
|
|
import { BsPrefixProps } from './helpers';
|
|
export interface TooltipProps extends React.HTMLAttributes<HTMLDivElement>, BsPrefixProps {
|
|
placement?: Placement;
|
|
arrowProps?: Partial<OverlayArrowProps>;
|
|
show?: boolean;
|
|
popper?: PopperRef;
|
|
}
|
|
declare const Tooltip: React.ForwardRefExoticComponent<TooltipProps & React.RefAttributes<HTMLDivElement>>;
|
|
export default Tooltip;
|