@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.
17 lines (16 loc) • 1.3 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltMediaSourceSettingsToggleIconWireframe } from '../VeltMediaSourceSettingsToggleIconWireframe/VeltMediaSourceSettingsToggleIconWireframe';
import { IVeltMediaSourceSettingsSelectedLabelWireframe } from '../VeltMediaSourceSettingsSelectedLabelWireframe/VeltMediaSourceSettingsSelectedLabelWireframe';
import { IVeltMediaSourceSettingsOptionsWireframe } from '../VeltMediaSourceSettingsOptionsWireframe/VeltMediaSourceSettingsOptionsWireframe';
import { IVeltMediaSourceSettingsDividerWireframe } from '../VeltMediaSourceSettingsDividerWireframe/VeltMediaSourceSettingsDividerWireframe';
export interface IVeltMediaSourceSettingsAudioWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltMediaSourceSettingsAudioWireframe extends React.FC<IVeltMediaSourceSettingsAudioWireframeProps> {
ToggleIcon: IVeltMediaSourceSettingsToggleIconWireframe;
SelectedLabel: IVeltMediaSourceSettingsSelectedLabelWireframe;
Options: IVeltMediaSourceSettingsOptionsWireframe;
Divider: IVeltMediaSourceSettingsDividerWireframe;
}
declare const VeltMediaSourceSettingsAudioWireframe: IVeltMediaSourceSettingsAudioWireframe;
export default VeltMediaSourceSettingsAudioWireframe;