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.

16 lines (15 loc) 1.07 kB
import React from 'react'; import { IVeltTextCommentToolbarCommentAnnotationProps } from './VeltTextCommentToolbarCommentAnnotation/VeltTextCommentToolbarCommentAnnotation'; import { IVeltTextCommentToolbarCopywriterProps } from './VeltTextCommentToolbarCopywriter/VeltTextCommentToolbarCopywriter'; import { IVeltTextCommentToolbarGenericProps } from './VeltTextCommentToolbarGeneric/VeltTextCommentToolbarGeneric'; import { IVeltTextCommentToolbarDividerProps } from './VeltTextCommentToolbarDivider/VeltTextCommentToolbarDivider'; import { IVeltWireframeCommonProps } from '../../constants'; export interface IVeltTextCommentToolbarProps extends IVeltWireframeCommonProps { } declare const VeltTextCommentToolbar: React.FC<IVeltTextCommentToolbarProps> & { CommentAnnotation: React.FC<IVeltTextCommentToolbarCommentAnnotationProps>; Copywriter: React.FC<IVeltTextCommentToolbarCopywriterProps>; Generic: React.FC<IVeltTextCommentToolbarGenericProps>; Divider: React.FC<IVeltTextCommentToolbarDividerProps>; }; export default VeltTextCommentToolbar;