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.56 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../../constants'; import { IVeltRecorderControlPanelActionBarWireframe } from '../VeltRecorderControlPanelActionBarWireframe/VeltRecorderControlPanelActionBarWireframe'; import { IVeltRecorderControlPanelVideoWireframe } from '../VeltRecorderControlPanelVideoWireframe/VeltRecorderControlPanelVideoWireframe'; import { IVeltRecorderControlPanelLoadingWireframe } from '../VeltRecorderControlPanelLoadingWireframe/VeltRecorderControlPanelLoadingWireframe'; import { IVeltRecorderControlPanelScreenMiniContainerWireframe } from '../VeltRecorderControlPanelScreenMiniContainerWireframe/VeltRecorderControlPanelScreenMiniContainerWireframe'; import { IVeltRecorderControlPanelScreenWireframe } from '../VeltRecorderControlPanelScreenWireframe/VeltRecorderControlPanelScreenWireframe'; export interface IVeltRecorderControlPanelThreadModeWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltRecorderControlPanelThreadModeWireframe extends React.FC<IVeltRecorderControlPanelThreadModeWireframeProps> { Video: IVeltRecorderControlPanelVideoWireframe; Screen: IVeltRecorderControlPanelScreenWireframe; Loading: IVeltRecorderControlPanelLoadingWireframe; ActionBar: IVeltRecorderControlPanelActionBarWireframe; ScreenMiniContainer: IVeltRecorderControlPanelScreenMiniContainerWireframe; } declare const VeltRecorderControlPanelThreadModeWireframe: IVeltRecorderControlPanelThreadModeWireframe; export default VeltRecorderControlPanelThreadModeWireframe;