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.

18 lines (17 loc) 1.2 kB
import React from 'react'; import { IVeltNotificationsToolIconWireframe } from './VeltNotificationsToolIconWireframe/VeltNotificationsToolIconWireframe'; import { IVeltNotificationsToolLabelWireframe } from './VeltNotificationsToolLabelWireframe/VeltNotificationsToolLabelWireframe'; import { IVeltNotificationsToolUnreadCountWireframe } from './VeltNotificationsToolUnreadCountWireframe/VeltNotificationsToolUnreadCountWireframe'; import { IVeltNotificationsToolUnreadIconWireframe } from './VeltNotificationsToolUnreadIconWireframe/VeltNotificationsToolUnreadIconWireframe'; import { IVeltWireframeCommonProps } from '../../constants'; export interface IVeltNotificationsToolWireframeProps extends IVeltWireframeCommonProps { variant?: string; } export interface IVeltNotificationsToolWireframe extends React.FC<IVeltNotificationsToolWireframeProps> { Label: IVeltNotificationsToolLabelWireframe; UnreadIcon: IVeltNotificationsToolUnreadIconWireframe; Icon: IVeltNotificationsToolIconWireframe; UnreadCount: IVeltNotificationsToolUnreadCountWireframe; } declare const VeltNotificationsToolWireframe: IVeltNotificationsToolWireframe; export default VeltNotificationsToolWireframe;