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.

28 lines (27 loc) 2.6 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../../constants'; import { IVeltRecorderControlPanelFloatingModeContainerWireframe } from './VeltRecorderControlPanelFloatingModeContainerWireframe/VeltRecorderControlPanelFloatingModeContainerWireframe'; import { IVeltRecorderControlPanelFloatingModeWaveformWireframe } from './VeltRecorderControlPanelFloatingModeWaveformWireframe/VeltRecorderControlPanelFloatingModeWaveformWireframe'; import { IVeltRecorderControlPanelActionBarWireframe } from '../VeltRecorderControlPanelActionBarWireframe/VeltRecorderControlPanelActionBarWireframe'; import { IVeltRecorderControlPanelCollapsedButtonWireframe } from '../VeltRecorderControlPanelCollapsedButtonWireframe/VeltRecorderControlPanelCollapsedButtonWireframe'; import { IVeltRecorderControlPanelLoadingWireframe } from '../VeltRecorderControlPanelLoadingWireframe/VeltRecorderControlPanelLoadingWireframe'; import { IVeltRecorderControlPanelPausedWireframe } from '../VeltRecorderControlPanelPausedWireframe/VeltRecorderControlPanelPausedWireframe'; import { IVeltRecorderControlPanelVideoWireframe } from '../VeltRecorderControlPanelVideoWireframe/VeltRecorderControlPanelVideoWireframe'; import { IVeltRecorderControlPanelScreenWireframe } from '../VeltRecorderControlPanelScreenWireframe/VeltRecorderControlPanelScreenWireframe'; import { IVeltRecorderControlPanelScreenMiniContainerWireframe } from '../VeltRecorderControlPanelScreenMiniContainerWireframe/VeltRecorderControlPanelScreenMiniContainerWireframe'; export interface IVeltRecorderControlPanelFloatingModeWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltRecorderControlPanelFloatingModeWireframe extends React.FC<IVeltRecorderControlPanelFloatingModeWireframeProps> { Container: IVeltRecorderControlPanelFloatingModeContainerWireframe; ScreenVideo: IVeltRecorderControlPanelScreenMiniContainerWireframe; ScreenMiniContainer: IVeltRecorderControlPanelScreenMiniContainerWireframe; Waveform: IVeltRecorderControlPanelFloatingModeWaveformWireframe; Video: IVeltRecorderControlPanelVideoWireframe; Screen: IVeltRecorderControlPanelScreenWireframe; CollapsedButton: IVeltRecorderControlPanelCollapsedButtonWireframe; Paused: IVeltRecorderControlPanelPausedWireframe; Loading: IVeltRecorderControlPanelLoadingWireframe; ActionBar: IVeltRecorderControlPanelActionBarWireframe; } declare const VeltRecorderControlPanelFloatingModeWireframe: IVeltRecorderControlPanelFloatingModeWireframe; export default VeltRecorderControlPanelFloatingModeWireframe;