@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.64 kB
TypeScript
import React from 'react';
import { IVeltNotificationsPanelContentPeopleListItemAvatarWireframe } from './VeltNotificationsPanelContentPeopleListItemAvatarWireframe/VeltNotificationsPanelContentPeopleListItemAvatarWireframe';
import { IVeltNotificationsPanelContentPeopleListItemContentWireframe } from './VeltNotificationsPanelContentPeopleListItemContentWireframe/VeltNotificationsPanelContentPeopleListItemContentWireframe';
import { IVeltNotificationsPanelContentPeopleListItemCountWireframe } from './VeltNotificationsPanelContentPeopleListItemCountWireframe/VeltNotificationsPanelContentPeopleListItemCountWireframe';
import { IVeltNotificationsPanelContentPeopleListItemNameWireframe } from './VeltNotificationsPanelContentPeopleListItemNameWireframe/VeltNotificationsPanelContentPeopleListItemNameWireframe';
import { IVeltWireframeCommonProps } from '../../../../../../constants';
export interface IVeltNotificationsPanelContentPeopleListItemWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltNotificationsPanelContentPeopleListItemWireframe extends React.FC<IVeltNotificationsPanelContentPeopleListItemWireframeProps> {
Avatar: IVeltNotificationsPanelContentPeopleListItemAvatarWireframe;
Name: IVeltNotificationsPanelContentPeopleListItemNameWireframe;
Count: IVeltNotificationsPanelContentPeopleListItemCountWireframe;
Content: IVeltNotificationsPanelContentPeopleListItemContentWireframe;
}
declare const VeltNotificationsPanelContentPeopleListItemWireframe: IVeltNotificationsPanelContentPeopleListItemWireframe;
export default VeltNotificationsPanelContentPeopleListItemWireframe;