@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.34 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltCommentDialogPriorityDropdownTriggerArrowWireframeProps } from './VeltCommentDialogPriorityDropdownTriggerArrowWireframe/VeltCommentDialogPriorityDropdownTriggerArrowWireframe';
import { IVeltCommentDialogPriorityDropdownTriggerIconWireframeProps } from './VeltCommentDialogPriorityDropdownTriggerIconWireframe/VeltCommentDialogPriorityDropdownTriggerIconWireframe';
import { IVeltCommentDialogPriorityDropdownTriggerNameWireframeProps } from './VeltCommentDialogPriorityDropdownTriggerNameWireframe/VeltCommentDialogPriorityDropdownTriggerNameWireframe';
export interface IVeltCommentDialogPriorityDropdownTriggerWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogPriorityDropdownTriggerWireframe extends React.FC<IVeltCommentDialogPriorityDropdownTriggerWireframeProps> {
Arrow: React.FC<IVeltCommentDialogPriorityDropdownTriggerArrowWireframeProps>;
Name: React.FC<IVeltCommentDialogPriorityDropdownTriggerNameWireframeProps>;
Icon: React.FC<IVeltCommentDialogPriorityDropdownTriggerIconWireframeProps>;
}
declare const VeltCommentDialogPriorityDropdownTriggerWireframe: IVeltCommentDialogPriorityDropdownTriggerWireframe;
export default VeltCommentDialogPriorityDropdownTriggerWireframe;