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.

21 lines (20 loc) 1.96 kB
import React from 'react'; import { IVeltCommentDialogComposerAttachmentsOtherDeleteProps } from './VeltCommentDialogComposerAttachmentsOtherDelete/VeltCommentDialogComposerAttachmentsOtherDelete'; import { IVeltCommentDialogComposerAttachmentsOtherDownloadProps } from './VeltCommentDialogComposerAttachmentsOtherDownload/VeltCommentDialogComposerAttachmentsOtherDownload'; import { IVeltCommentDialogComposerAttachmentsOtherIconProps } from './VeltCommentDialogComposerAttachmentsOtherIcon/VeltCommentDialogComposerAttachmentsOtherIcon'; import { IVeltCommentDialogComposerAttachmentsOtherLoadingProps } from './VeltCommentDialogComposerAttachmentsOtherLoading/VeltCommentDialogComposerAttachmentsOtherLoading'; import { IVeltCommentDialogComposerAttachmentsOtherNameProps } from './VeltCommentDialogComposerAttachmentsOtherName/VeltCommentDialogComposerAttachmentsOtherName'; import { IVeltCommentDialogComposerAttachmentsOtherSizeProps } from './VeltCommentDialogComposerAttachmentsOtherSize/VeltCommentDialogComposerAttachmentsOtherSize'; import { IVeltWireframeCommonProps } from '../../../../../constants'; export interface IVeltCommentDialogComposerAttachmentsOtherProps extends IVeltWireframeCommonProps { } export interface IVeltCommentDialogComposerAttachmentsOther extends React.FC<IVeltCommentDialogComposerAttachmentsOtherProps> { Icon: React.FC<IVeltCommentDialogComposerAttachmentsOtherIconProps>; Delete: React.FC<IVeltCommentDialogComposerAttachmentsOtherDeleteProps>; Download: React.FC<IVeltCommentDialogComposerAttachmentsOtherDownloadProps>; Loading: React.FC<IVeltCommentDialogComposerAttachmentsOtherLoadingProps>; Name: React.FC<IVeltCommentDialogComposerAttachmentsOtherNameProps>; Size: React.FC<IVeltCommentDialogComposerAttachmentsOtherSizeProps>; } declare const VeltCommentDialogComposerAttachmentsOther: IVeltCommentDialogComposerAttachmentsOther; export default VeltCommentDialogComposerAttachmentsOther;