@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.41 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltCommentDialogPriorityDropdownContentItemIconWireframeProps } from './VeltCommentDialogPriorityDropdownContentItemIconWireframe/VeltCommentDialogPriorityDropdownContentItemIconWireframe';
import { IVeltCommentDialogPriorityDropdownContentItemNameWireframeProps } from './VeltCommentDialogPriorityDropdownContentItemNameWireframe/VeltCommentDialogPriorityDropdownContentItemNameWireframe';
import { IVeltCommentDialogPriorityDropdownContentItemTickWireframeProps } from './VeltCommentDialogPriorityDropdownContentItemTickWireframe/VeltCommentDialogPriorityDropdownContentItemTickWireframe';
export interface IVeltCommentDialogPriorityDropdownContentItemWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogPriorityDropdownContentItemWireframe extends React.FC<IVeltCommentDialogPriorityDropdownContentItemWireframeProps> {
Icon: React.FC<IVeltCommentDialogPriorityDropdownContentItemIconWireframeProps>;
Name: React.FC<IVeltCommentDialogPriorityDropdownContentItemNameWireframeProps>;
Tick: React.FC<IVeltCommentDialogPriorityDropdownContentItemTickWireframeProps>;
}
declare const VeltCommentDialogPriorityDropdownContentItemWireframe: IVeltCommentDialogPriorityDropdownContentItemWireframe;
export default VeltCommentDialogPriorityDropdownContentItemWireframe;