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.

19 lines (18 loc) 1.28 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../constants'; import { IVeltCursorPointerArrowWireframe } from './VeltCursorPointerArrowWireframe/VeltCursorPointerArrowWireframe'; import { IVeltCursorPointerAudioHuddleWireframe } from './VeltCursorPointerAudioHuddleWireframe/VeltCursorPointerAudioHuddleWireframe'; import { IVeltCursorPointerAvatarWireframe } from './VeltCursorPointerAvatarWireframe/VeltCursorPointerAvatarWireframe'; import { IVeltCursorPointerDefaultWireframe } from './VeltCursorPointerDefaultWireframe/VeltCursorPointerDefaultWireframe'; import { IVeltCursorPointerVideoHuddleWireframe } from './VeltCursorPointerVideoHuddleWireframe/VeltCursorPointerVideoHuddleWireframe'; export interface IVeltCursorPointerWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltCursorPointerWireframe extends React.FC<IVeltCursorPointerWireframeProps> { Arrow: IVeltCursorPointerArrowWireframe; AudioHuddle: IVeltCursorPointerAudioHuddleWireframe; Avatar: IVeltCursorPointerAvatarWireframe; Default: IVeltCursorPointerDefaultWireframe; VideoHuddle: IVeltCursorPointerVideoHuddleWireframe; } declare const VeltCursorPointerWireframe: IVeltCursorPointerWireframe; export default VeltCursorPointerWireframe;