UNPKG

@veltdev/react

Version:

Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.

13 lines (12 loc) 446 B
import React from 'react'; export interface IVeltCommentBubbleProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> { targetCommentElementId?: string; /** * @deprecated Use `avatar` instead */ showAvatar?: boolean; avatar?: boolean; commentBubbleTargetPinHover?: boolean; } declare const SnippylyCommentBubble: React.FC<IVeltCommentBubbleProps>; export default SnippylyCommentBubble;