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.

17 lines (16 loc) 1.5 kB
import React from 'react'; import { IVeltCommentDialogComposerAttachmentsImagePreviewProps } from './VeltCommentDialogComposerAttachmentsImagePreview/VeltCommentDialogComposerAttachmentsImagePreview'; import { IVeltCommentDialogComposerAttachmentsImageDeleteProps } from './VeltCommentDialogComposerAttachmentsImageDelete/VeltCommentDialogComposerAttachmentsImageDelete'; import { IVeltCommentDialogComposerAttachmentsImageDownloadProps } from './VeltCommentDialogComposerAttachmentsImageDownload/VeltCommentDialogComposerAttachmentsImageDownload'; import { IVeltCommentDialogComposerAttachmentsImageLoadingProps } from './VeltCommentDialogComposerAttachmentsImageLoading/VeltCommentDialogComposerAttachmentsImageLoading'; import { IVeltWireframeCommonProps } from '../../../../../constants'; export interface IVeltCommentDialogComposerAttachmentsImageProps extends IVeltWireframeCommonProps { } export interface IVeltCommentDialogComposerAttachmentsImage extends React.FC<IVeltCommentDialogComposerAttachmentsImageProps> { Preview: React.FC<IVeltCommentDialogComposerAttachmentsImagePreviewProps>; Delete: React.FC<IVeltCommentDialogComposerAttachmentsImageDeleteProps>; Download: React.FC<IVeltCommentDialogComposerAttachmentsImageDownloadProps>; Loading: React.FC<IVeltCommentDialogComposerAttachmentsImageLoadingProps>; } declare const VeltCommentDialogComposerAttachmentsImage: IVeltCommentDialogComposerAttachmentsImage; export default VeltCommentDialogComposerAttachmentsImage;