@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.
29 lines (28 loc) • 3.15 kB
TypeScript
import React from 'react';
import { IVeltRecorderPlayerExpandedControlsDeleteButtonWireframe } from './VeltRecorderPlayerExpandedControlsDeleteButtonWireframe/VeltRecorderPlayerExpandedControlsDeleteButtonWireframe';
import { IVeltRecorderPlayerExpandedControlsProgressBarWireframe } from './VeltRecorderPlayerExpandedControlsProgressBarWireframe/VeltRecorderPlayerExpandedControlsProgressBarWireframe';
import { IVeltRecorderPlayerExpandedControlsSettingsButtonWireframe } from './VeltRecorderPlayerExpandedControlsSettingsButtonWireframe/VeltRecorderPlayerExpandedControlsSettingsButtonWireframe';
import { IVeltRecorderPlayerExpandedControlsSubtitleButtonWireframe } from './VeltRecorderPlayerExpandedControlsSubtitleButtonWireframe/VeltRecorderPlayerExpandedControlsSubtitleButtonWireframe';
import { IVeltRecorderPlayerExpandedControlsTimeWireframe } from './VeltRecorderPlayerExpandedControlsTimeWireframe/VeltRecorderPlayerExpandedControlsTimeWireframe';
import { IVeltRecorderPlayerExpandedControlsToggleButtonWireframe } from './VeltRecorderPlayerExpandedControlsToggleButtonWireframe/VeltRecorderPlayerExpandedControlsToggleButtonWireframe';
import { IVeltRecorderPlayerExpandedControlsTranscriptionButtonWireframe } from './VeltRecorderPlayerExpandedControlsTranscriptionButtonWireframe/VeltRecorderPlayerExpandedControlsTranscriptionButtonWireframe';
import { IVeltRecorderPlayerExpandedControlsVolumeButtonWireframe } from './VeltRecorderPlayerExpandedControlsVolumeButtonWireframe/VeltRecorderPlayerExpandedControlsVolumeButtonWireframe';
import { IVeltRecorderPlayerExpandedControlsCurrentTimeWireframe } from './VeltRecorderPlayerExpandedControlsCurrentTimeWireframe/VeltRecorderPlayerExpandedControlsCurrentTimeWireframe';
import { IVeltRecorderPlayerExpandedControlsTotalTimeWireframe } from './VeltRecorderPlayerExpandedControlsTotalTimeWireframe/VeltRecorderPlayerExpandedControlsTotalTimeWireframe';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltRecorderPlayerExpandedControlsWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecorderPlayerExpandedControlsWireframe extends React.FC<IVeltRecorderPlayerExpandedControlsWireframeProps> {
DeleteButton: IVeltRecorderPlayerExpandedControlsDeleteButtonWireframe;
ProgressBar: IVeltRecorderPlayerExpandedControlsProgressBarWireframe;
SettingsButton: IVeltRecorderPlayerExpandedControlsSettingsButtonWireframe;
SubtitleButton: IVeltRecorderPlayerExpandedControlsSubtitleButtonWireframe;
Time: IVeltRecorderPlayerExpandedControlsTimeWireframe;
TranscriptionButton: IVeltRecorderPlayerExpandedControlsTranscriptionButtonWireframe;
ToggleButton: IVeltRecorderPlayerExpandedControlsToggleButtonWireframe;
VolumeButton: IVeltRecorderPlayerExpandedControlsVolumeButtonWireframe;
CurrentTime: IVeltRecorderPlayerExpandedControlsCurrentTimeWireframe;
TotalTime: IVeltRecorderPlayerExpandedControlsTotalTimeWireframe;
}
declare const VeltRecorderPlayerExpandedControlsWireframe: IVeltRecorderPlayerExpandedControlsWireframe;
export default VeltRecorderPlayerExpandedControlsWireframe;