@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
TypeScript
import React from 'react';
import { IVeltCommentDialogToggleReplyCount } from './VeltCommentDialogToggleReplyCount/VeltCommentDialogToggleReplyCount';
import { IVeltCommentDialogToggleReplyText } from './VeltCommentDialogToggleReplyText/VeltCommentDialogToggleReplyText';
import { IVeltCommentDialogToggleReplyIcon } from './VeltCommentDialogToggleReplyIcon/VeltCommentDialogToggleReplyIcon';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltCommentDialogToggleReplyProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogToggleReply extends React.FC<IVeltCommentDialogToggleReplyProps> {
Icon: IVeltCommentDialogToggleReplyIcon;
Text: IVeltCommentDialogToggleReplyText;
Count: IVeltCommentDialogToggleReplyCount;
}
declare const VeltCommentDialogToggleReply: IVeltCommentDialogToggleReply;
export default VeltCommentDialogToggleReply;