mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
14 lines
513 B
TypeScript
14 lines
513 B
TypeScript
import React from 'react';
|
|
import { ArrowProps, Placement } from './Overlay';
|
|
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface TooltipProps extends React.HTMLAttributes<HTMLDivElement>, BsPrefixPropsWithChildren {
|
|
id: string;
|
|
placement?: Placement;
|
|
arrowProps?: ArrowProps;
|
|
show?: boolean;
|
|
popper?: any;
|
|
}
|
|
declare type Tooltip = BsPrefixRefForwardingComponent<'div', TooltipProps>;
|
|
declare const Tooltip: Tooltip;
|
|
export default Tooltip;
|