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.31 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../constants'; import { IVeltCommentDialogStatusDropdownTriggerArrowWireframeProps } from './VeltCommentDialogStatusDropdownTriggerArrowWireframe/VeltCommentDialogStatusDropdownTriggerArrowWireframe'; import { IVeltCommentDialogStatusDropdownTriggerIconWireframeProps } from './VeltCommentDialogStatusDropdownTriggerIconWireframe/VeltCommentDialogStatusDropdownTriggerIconWireframe'; import { IVeltCommentDialogStatusDropdownTriggerNameWireframeProps } from './VeltCommentDialogStatusDropdownTriggerNameWireframe/VeltCommentDialogStatusDropdownTriggerNameWireframe'; export interface IVeltCommentDialogStatusDropdownTriggerWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltCommentDialogStatusDropdownTriggerWireframe extends React.FC<IVeltCommentDialogStatusDropdownTriggerWireframeProps> { Arrow: React.FC<IVeltCommentDialogStatusDropdownTriggerArrowWireframeProps>; Name: React.FC<IVeltCommentDialogStatusDropdownTriggerNameWireframeProps>; Icon: React.FC<IVeltCommentDialogStatusDropdownTriggerIconWireframeProps>; } declare const VeltCommentDialogStatusDropdownTriggerWireframe: IVeltCommentDialogStatusDropdownTriggerWireframe; export default VeltCommentDialogStatusDropdownTriggerWireframe;