@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.
29 lines (28 loc) • 2.47 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';
import { IVeltNotificationsPanelSettingsButtonWireframe } from './VeltNotificationsPanelSettingsButtonWireframe/VeltNotificationsPanelSettingsButtonWireframe';
import { IVeltNotificationsPanelSettingsWireframe } from './VeltNotificationsPanelSettingsWireframe/VeltNotificationsPanelSettingsWireframe';
import { IVeltNotificationsPanelTitleTextWireframe } from './VeltNotificationsPanelTitleTextWireframe/VeltNotificationsPanelTitleTextWireframe';
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;
SettingsButton: IVeltNotificationsPanelSettingsButtonWireframe;
Settings: IVeltNotificationsPanelSettingsWireframe;
TitleText: IVeltNotificationsPanelTitleTextWireframe;
}
declare const VeltNotificationsPanelWireframe: IVeltNotificationsPanelWireframe;
export default VeltNotificationsPanelWireframe;