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.

15 lines (14 loc) 908 B
import React from "react"; import { IVeltCommentBubbleAvatarProps } from "./VeltCommentBubbleAvatar/VeltCommentBubbleAvatar"; import { IVeltCommentBubbleCommentsCountProps } from "./VeltCommentBubbleCommentsCount/VeltCommentBubbleCommentsCount"; import { IVeltCommentBubbleUnreadIconProps } from "./VeltCommentBubbleUnreadIcon/VeltCommentBubbleUnreadIcon"; export interface IVeltCommentBubbleWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> { variant?: string; } export interface IVeltCommentBubbleWireframe extends React.FC<IVeltCommentBubbleWireframeProps> { Avatar: React.FC<IVeltCommentBubbleAvatarProps>; CommentsCount: React.FC<IVeltCommentBubbleCommentsCountProps>; UnreadIcon: React.FC<IVeltCommentBubbleUnreadIconProps>; } declare const VeltCommentBubbleWireframe: IVeltCommentBubbleWireframe; export default VeltCommentBubbleWireframe;