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.

23 lines (22 loc) 2.09 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../../constants'; import { IVeltRecorderControlPanelActionBarWaveformWireframe } from './VeltRecorderControlPanelActionBarWaveformWireframe/VeltRecorderControlPanelActionBarWaveformWireframe'; import { IVeltRecorderControlPanelActionBarClearWireframe } from './VeltRecorderControlPanelActionBarClearWireframe/VeltRecorderControlPanelActionBarClearWireframe'; import { IVeltRecorderControlPanelActionBarStopWireframe } from './VeltRecorderControlPanelActionBarStopWireframe/VeltRecorderControlPanelActionBarStopWireframe'; import { IVeltRecorderControlPanelActionBarTimeWireframe } from './VeltRecorderControlPanelActionBarTimeWireframe/VeltRecorderControlPanelActionBarTimeWireframe'; import { IVeltRecorderControlPanelActionBarToggleWireframe } from './VeltRecorderControlPanelActionBarToggleWireframe/VeltRecorderControlPanelActionBarToggleWireframe'; import { IVeltRecorderControlPanelActionBarTypeIconWireframe } from './VeltRecorderControlPanelActionBarTypeIconWireframe/VeltRecorderControlPanelActionBarTypeIconWireframe'; import { IVeltRecorderControlPanelActionBarPipWireframe } from './VeltRecorderControlPanelActionBarPipWireframe/VeltRecorderControlPanelActionBarPipWireframe'; export interface IVeltRecorderControlPanelActionBarWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltRecorderControlPanelActionBarWireframe extends React.FC<IVeltRecorderControlPanelActionBarWireframeProps> { Clear: IVeltRecorderControlPanelActionBarClearWireframe; Stop: IVeltRecorderControlPanelActionBarStopWireframe; Time: IVeltRecorderControlPanelActionBarTimeWireframe; Toggle: IVeltRecorderControlPanelActionBarToggleWireframe; TypeIcon: IVeltRecorderControlPanelActionBarTypeIconWireframe; Waveform: IVeltRecorderControlPanelActionBarWaveformWireframe; Pip: IVeltRecorderControlPanelActionBarPipWireframe; } declare const VeltRecorderControlPanelActionBarWireframe: IVeltRecorderControlPanelActionBarWireframe; export default VeltRecorderControlPanelActionBarWireframe;