@gravatar-com/hovercards
Version:
Add profile hovercards to Gravatar images.
12 lines • 528 B
TypeScript
import type { ReactNode, CSSProperties } from 'react';
import type { Options } from './core';
export type HovercardsProps = Options & Partial<{
children: ReactNode;
attach: HTMLElement;
dataAttributeName: string;
ignoreSelector: string;
className: string;
style: CSSProperties;
}>;
export default function Hovercards({ children, attach, dataAttributeName, ignoreSelector, className, style, ...options }?: HovercardsProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=hovercards.d.ts.map