UNPKG

@catho/react-floating-badge

Version:

Floating badge with actions for React

18 lines (17 loc) 522 B
/// <reference types="react" /> import { BadgePosition, BalloonTheme } from '../../types'; export interface BalloonHintProps extends BalloonTheme { readonly parentHeight: number; readonly parentOffset: number; readonly position: BadgePosition; readonly hintContents?: string | JSX.Element; } export declare const PropDefaults: { bgColor: string; className: undefined; fontColor: string; fontSize: string; margin: number; hintContents: string; width: number; };