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.

13 lines (12 loc) 878 B
import React from 'react'; import { IVeltWireframeCommonProps } from '../../../constants'; import { IVeltCursorPointerAudioHuddleAvatarWireframe } from './VeltCursorPointerAudioHuddleAvatarWireframe/VeltCursorPointerAudioHuddleAvatarWireframe'; import { IVeltCursorPointerAudioHuddleAudioWireframe } from './VeltCursorPointerAudioHuddleAudioWireframe/VeltCursorPointerAudioHuddleAudioWireframe'; export interface IVeltCursorPointerAudioHuddleWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltCursorPointerAudioHuddleWireframe extends React.FC<IVeltCursorPointerAudioHuddleWireframeProps> { Avatar: IVeltCursorPointerAudioHuddleAvatarWireframe; Audio: IVeltCursorPointerAudioHuddleAudioWireframe; } declare const VeltCursorPointerAudioHuddleWireframe: IVeltCursorPointerAudioHuddleWireframe; export default VeltCursorPointerAudioHuddleWireframe;