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) 1.35 kB
import React from 'react'; import { IVeltCommentDialogComposerAttachmentsInvalidItemPreviewProps } from './VeltCommentDialogComposerAttachmentsInvalidItemPreview/VeltCommentDialogComposerAttachmentsInvalidItemPreview'; import { IVeltCommentDialogComposerAttachmentsInvalidItemMessageProps } from './VeltCommentDialogComposerAttachmentsInvalidItemMessage/VeltCommentDialogComposerAttachmentsInvalidItemMessage'; import { IVeltCommentDialogComposerAttachmentsInvalidItemDeleteProps } from './VeltCommentDialogComposerAttachmentsInvalidItemDelete/VeltCommentDialogComposerAttachmentsInvalidItemDelete'; import { IVeltWireframeCommonProps } from '../../../../../../constants'; export interface IVeltCommentDialogComposerAttachmentsInvalidItemProps extends IVeltWireframeCommonProps { } export interface IVeltCommentDialogComposerAttachmentsInvalidItem extends React.FC<IVeltCommentDialogComposerAttachmentsInvalidItemProps> { Preview: React.FC<IVeltCommentDialogComposerAttachmentsInvalidItemPreviewProps>; Message: React.FC<IVeltCommentDialogComposerAttachmentsInvalidItemMessageProps>; Delete: React.FC<IVeltCommentDialogComposerAttachmentsInvalidItemDeleteProps>; } declare const VeltCommentDialogComposerAttachmentsInvalidItem: IVeltCommentDialogComposerAttachmentsInvalidItem; export default VeltCommentDialogComposerAttachmentsInvalidItem;