@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.
23 lines (22 loc) • 1.84 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltNotificationsPanelContentWireframe } from './VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentWireframe';
import { IVeltNotificationsPanelHeaderWireframe } from './VeltNotificationsPanelHeaderWireframe/VeltNotificationsPanelHeaderWireframe';
import { IVeltNotificationsPanelReadAllButtonWireframe } from './VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe';
import { IVeltNotificationsPanelTitleWireframe } from './VeltNotificationsPanelTitleWireframe/VeltNotificationsPanelTitleWireframe';
import { IVeltNotificationsPanelViewAllButtonWireframe } from './VeltNotificationsPanelViewAllButtonWireframe/VeltNotificationsPanelViewAllButtonWireframe';
import { IVeltNotificationsPanelCloseButtonWireframe } from './VeltNotificationsPanelCloseButtonWireframe/VeltNotificationsPanelCloseButtonWireframe';
import { IVeltNotificationsPanelSkeletonWireframe } from './VeltNotificationsPanelSkeletonWireframe/VeltNotificationsPanelSkeletonWireframe';
export interface IVeltNotificationsPanelWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltNotificationsPanelWireframe extends React.FC<IVeltNotificationsPanelWireframeProps> {
Content: IVeltNotificationsPanelContentWireframe;
Header: IVeltNotificationsPanelHeaderWireframe;
ReadAllButton: IVeltNotificationsPanelReadAllButtonWireframe;
Title: IVeltNotificationsPanelTitleWireframe;
ViewAllButton: IVeltNotificationsPanelViewAllButtonWireframe;
CloseButton: IVeltNotificationsPanelCloseButtonWireframe;
Skeleton: IVeltNotificationsPanelSkeletonWireframe;
}
declare const VeltNotificationsPanelWireframe: IVeltNotificationsPanelWireframe;
export default VeltNotificationsPanelWireframe;