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.

21 lines (20 loc) 1.8 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../../constants'; import { IVeltCommentsSidebarV2FilterContainerTitle } from './VeltCommentsSidebarV2FilterContainerTitle/VeltCommentsSidebarV2FilterContainerTitle'; import { IVeltCommentsSidebarV2FilterContainerCloseButton } from './VeltCommentsSidebarV2FilterContainerCloseButton/VeltCommentsSidebarV2FilterContainerCloseButton'; import { IVeltCommentsSidebarV2FilterContainerGroupBy } from './VeltCommentsSidebarV2FilterContainerGroupBy/VeltCommentsSidebarV2FilterContainerGroupBy'; import { IVeltCommentsSidebarV2FilterContainerResetButton } from './VeltCommentsSidebarV2FilterContainerResetButton/VeltCommentsSidebarV2FilterContainerResetButton'; import { IVeltCommentsSidebarV2FilterContainerApplyButton } from './VeltCommentsSidebarV2FilterContainerApplyButton/VeltCommentsSidebarV2FilterContainerApplyButton'; import { IVeltCommentsSidebarV2FilterContainerSectionList } from './VeltCommentsSidebarV2FilterContainerSectionList/VeltCommentsSidebarV2FilterContainerSectionList'; export interface IVeltCommentsSidebarV2FilterContainerProps extends IVeltWireframeCommonProps { } export interface IVeltCommentsSidebarV2FilterContainer extends React.FC<IVeltCommentsSidebarV2FilterContainerProps> { Title: IVeltCommentsSidebarV2FilterContainerTitle; CloseButton: IVeltCommentsSidebarV2FilterContainerCloseButton; GroupBy: IVeltCommentsSidebarV2FilterContainerGroupBy; ResetButton: IVeltCommentsSidebarV2FilterContainerResetButton; ApplyButton: IVeltCommentsSidebarV2FilterContainerApplyButton; SectionList: IVeltCommentsSidebarV2FilterContainerSectionList; } declare const VeltCommentsSidebarV2FilterContainer: IVeltCommentsSidebarV2FilterContainer; export default VeltCommentsSidebarV2FilterContainer;