@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) • 736 B
TypeScript
import React from "react";
import { IVeltCommentBubbleAvatarProps } from "./VeltCommentBubbleAvatar/VeltCommentBubbleAvatar";
import { IVeltCommentBubbleCommentsCountProps } from "./VeltCommentBubbleCommentsCount/VeltCommentBubbleCommentsCount";
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>;
}
declare const VeltCommentBubbleWireframe: IVeltCommentBubbleWireframe;
export default VeltCommentBubbleWireframe;