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) 2.01 kB
import React from 'react'; import { IVeltNotificationsPanelContentListItemAvatarWireframe } from './VeltNotificationsPanelContentListItemAvatarWireframe/VeltNotificationsPanelContentListItemAvatarWireframe'; import { IVeltNotificationsPanelContentListItemBodyWireframe } from './VeltNotificationsPanelContentListItemBodyWireframe/VeltNotificationsPanelContentListItemBodyWireframe'; import { IVeltNotificationsPanelContentListItemFileNameWireframe } from './VeltNotificationsPanelContentListItemFileNameWireframe/VeltNotificationsPanelContentListItemFileNameWireframe'; import { IVeltNotificationsPanelContentListItemHeadlineWireframe } from './VeltNotificationsPanelContentListItemHeadlineWireframe/VeltNotificationsPanelContentListItemHeadlineWireframe'; import { IVeltNotificationsPanelContentListItemTimeWireframe } from './VeltNotificationsPanelContentListItemTimeWireframe/VeltNotificationsPanelContentListItemTimeWireframe'; import { IVeltNotificationsPanelContentListItemUnreadWireframe } from './VeltNotificationsPanelContentListItemUnreadWireframe/VeltNotificationsPanelContentListItemUnreadWireframe'; import { IVeltWireframeCommonProps } from '../../../../../constants'; export interface IVeltNotificationsPanelContentListItemWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltNotificationsPanelContentListItemWireframe extends React.FC<IVeltNotificationsPanelContentListItemWireframeProps> { Avatar: IVeltNotificationsPanelContentListItemAvatarWireframe; Body: IVeltNotificationsPanelContentListItemBodyWireframe; FileName: IVeltNotificationsPanelContentListItemFileNameWireframe; Headline: IVeltNotificationsPanelContentListItemHeadlineWireframe; Time: IVeltNotificationsPanelContentListItemTimeWireframe; Unread: IVeltNotificationsPanelContentListItemUnreadWireframe; } declare const VeltNotificationsPanelContentListItemWireframe: IVeltNotificationsPanelContentListItemWireframe; export default VeltNotificationsPanelContentListItemWireframe;