@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.05 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../../../../constants';
import { IVeltCommentsSidebarListItemGroupCountProps } from './VeltCommentsSidebarListItemGroupCount/VeltCommentsSidebarListItemGroupCount';
import { IVeltCommentsSidebarListItemGroupArrowProps } from './VeltCommentsSidebarListItemGroupArrow/VeltCommentsSidebarListItemGroupArrow';
import { IVeltCommentsSidebarListItemGroupNameProps } from './VeltCommentsSidebarListItemGroupName/VeltCommentsSidebarListItemGroupName';
export interface IVeltCommentsSidebarListItemGroupProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentsSidebarListItemGroup extends React.FC<IVeltCommentsSidebarListItemGroupProps> {
Count: React.FC<IVeltCommentsSidebarListItemGroupCountProps>;
Arrow: React.FC<IVeltCommentsSidebarListItemGroupArrowProps>;
Name: React.FC<IVeltCommentsSidebarListItemGroupNameProps>;
}
declare const VeltCommentsSidebarListItemGroup: IVeltCommentsSidebarListItemGroup;
export default VeltCommentsSidebarListItemGroup;