@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.
20 lines (19 loc) • 1.36 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltCommentPinGhostCommentIndicatorProps } from './VeltCommentPinGhostCommentIndicator/VeltCommentPinGhostCommentIndicator';
import { IVeltCommentPinIndexProps } from './VeltCommentPinIndex/VeltCommentPinIndex';
import { IVeltCommentPinTriangleProps } from './VeltCommentPinTriangle/VeltCommentPinTriangle';
import { IVeltCommentPinUnreadCommentIndicatorProps } from './VeltCommentPinUnreadCommentIndicator/VeltCommentPinUnreadCommentIndicator';
import { IVeltCommentPinPrivateCommentIndicatorProps } from './VeltCommentPinPrivateCommentIndicator/VeltCommentPinPrivateCommentIndicator';
import { IVeltCommentPinNumber } from './VeltCommentPinNumber/VeltCommentPinIndex';
export interface IVeltCommentPinWireframeProps extends IVeltWireframeCommonProps {
}
declare const VeltCommentPinWireframe: React.FC<IVeltCommentPinWireframeProps> & {
GhostCommentIndicator: React.FC<IVeltCommentPinGhostCommentIndicatorProps>;
Index: React.FC<IVeltCommentPinIndexProps>;
Number: IVeltCommentPinNumber;
PrivateCommentIndicator: React.FC<IVeltCommentPinPrivateCommentIndicatorProps>;
Triangle: React.FC<IVeltCommentPinTriangleProps>;
UnreadCommentIndicator: React.FC<IVeltCommentPinUnreadCommentIndicatorProps>;
};
export default VeltCommentPinWireframe;