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.

13 lines (12 loc) 865 B
import React from 'react'; import { IVeltWireframeCommonProps } from '../../../constants'; import { IVeltCommentsSidebarV2FilterDropdownTrigger } from './VeltCommentsSidebarV2FilterDropdownTrigger/VeltCommentsSidebarV2FilterDropdownTrigger'; import { IVeltCommentsSidebarV2FilterDropdownContent } from './VeltCommentsSidebarV2FilterDropdownContent/VeltCommentsSidebarV2FilterDropdownContent'; export interface IVeltCommentsSidebarV2FilterDropdownProps extends IVeltWireframeCommonProps { } export interface IVeltCommentsSidebarV2FilterDropdown extends React.FC<IVeltCommentsSidebarV2FilterDropdownProps> { Trigger: IVeltCommentsSidebarV2FilterDropdownTrigger; Content: IVeltCommentsSidebarV2FilterDropdownContent; } declare const VeltCommentsSidebarV2FilterDropdown: IVeltCommentsSidebarV2FilterDropdown; export default VeltCommentsSidebarV2FilterDropdown;