Dashboard sipadu mbip
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.

Tooltip.d.ts 312B

12345678910111213
  1. import { Placement } from './Overlay';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface TooltipProps {
  4. id: string | number;
  5. placement?: Placement;
  6. arrowProps?: { ref: any; style: object };
  7. }
  8. declare class Tooltip extends BsPrefixComponent<'div', TooltipProps> {}
  9. export default Tooltip;