@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.
17 lines (16 loc) • 1.7 kB
TypeScript
import React from 'react';
import { IVeltNotificationsPanelContentDocumentsListItemContentWireframe } from './VeltNotificationsPanelContentDocumentsListItemContentWireframe/VeltNotificationsPanelContentDocumentsListItemContentWireframe';
import { IVeltNotificationsPanelContentDocumentsListItemCountWireframe } from './VeltNotificationsPanelContentDocumentsListItemCountWireframe/VeltNotificationsPanelContentDocumentsListItemCountWireframe';
import { IVeltNotificationsPanelContentDocumentsListItemNameWireframe } from './VeltNotificationsPanelContentDocumentsListItemNameWireframe/VeltNotificationsPanelContentDocumentsListItemNameWireframe';
import { IVeltNotificationsPanelContentDocumentsListItemUnreadWireframe } from './VeltNotificationsPanelContentDocumentsListItemUnreadWireframe/VeltNotificationsPanelContentDocumentsListItemUnreadWireframe';
import { IVeltWireframeCommonProps } from '../../../../../../constants';
export interface IVeltNotificationsPanelContentDocumentsListItemWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltNotificationsPanelContentDocumentsListItemWireframe extends React.FC<IVeltNotificationsPanelContentDocumentsListItemWireframeProps> {
Content: IVeltNotificationsPanelContentDocumentsListItemContentWireframe;
Name: IVeltNotificationsPanelContentDocumentsListItemNameWireframe;
Count: IVeltNotificationsPanelContentDocumentsListItemCountWireframe;
Unread: IVeltNotificationsPanelContentDocumentsListItemUnreadWireframe;
}
declare const VeltNotificationsPanelContentDocumentsListItemWireframe: IVeltNotificationsPanelContentDocumentsListItemWireframe;
export default VeltNotificationsPanelContentDocumentsListItemWireframe;