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.

19 lines (18 loc) 1.76 kB
import React from 'react'; import { IVeltCommentDialogThreadCardAttachmentsOtherDeleteProps } from './VeltCommentDialogThreadCardAttachmentsOtherDelete/VeltCommentDialogThreadCardAttachmentsOtherDelete'; import { IVeltCommentDialogThreadCardAttachmentsOtherDownloadProps } from './VeltCommentDialogThreadCardAttachmentsOtherDownload/VeltCommentDialogThreadCardAttachmentsOtherDownload'; import { IVeltCommentDialogThreadCardAttachmentsOtherIconProps } from './VeltCommentDialogThreadCardAttachmentsOtherIcon/VeltCommentDialogThreadCardAttachmentsOtherIcon'; import { IVeltCommentDialogThreadCardAttachmentsOtherNameProps } from './VeltCommentDialogThreadCardAttachmentsOtherName/VeltCommentDialogThreadCardAttachmentsOtherName'; import { IVeltCommentDialogThreadCardAttachmentsOtherSizeProps } from './VeltCommentDialogThreadCardAttachmentsOtherSize/VeltCommentDialogThreadCardAttachmentsOtherSize'; import { IVeltWireframeCommonProps } from '../../../../../constants'; export interface IVeltCommentDialogThreadCardAttachmentsOtherProps extends IVeltWireframeCommonProps { } export interface IVeltCommentDialogThreadCardAttachmentsOther extends React.FC<IVeltCommentDialogThreadCardAttachmentsOtherProps> { Icon: React.FC<IVeltCommentDialogThreadCardAttachmentsOtherIconProps>; Delete: React.FC<IVeltCommentDialogThreadCardAttachmentsOtherDeleteProps>; Download: React.FC<IVeltCommentDialogThreadCardAttachmentsOtherDownloadProps>; Name: React.FC<IVeltCommentDialogThreadCardAttachmentsOtherNameProps>; Size: React.FC<IVeltCommentDialogThreadCardAttachmentsOtherSizeProps>; } declare const VeltCommentDialogThreadCardAttachmentsOther: IVeltCommentDialogThreadCardAttachmentsOther; export default VeltCommentDialogThreadCardAttachmentsOther;