@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 { IVeltMediaSourceSettingsDividerWireframe } from '../VeltMediaSourceSettingsDividerWireframe/VeltMediaSourceSettingsDividerWireframe';
import { IVeltMediaSourceSettingsOptionsWireframe } from '../VeltMediaSourceSettingsOptionsWireframe/VeltMediaSourceSettingsOptionsWireframe';
import { IVeltMediaSourceSettingsSelectedLabelWireframe } from '../VeltMediaSourceSettingsSelectedLabelWireframe/VeltMediaSourceSettingsSelectedLabelWireframe';
import { IVeltMediaSourceSettingsToggleIconWireframe } from '../VeltMediaSourceSettingsToggleIconWireframe/VeltMediaSourceSettingsToggleIconWireframe';
export interface IVeltMediaSourceSettingsVideoWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltMediaSourceSettingsVideoWireframe extends React.FC<IVeltMediaSourceSettingsVideoWireframeProps> {
ToggleIcon: IVeltMediaSourceSettingsToggleIconWireframe;
SelectedLabel: IVeltMediaSourceSettingsSelectedLabelWireframe;
Options: IVeltMediaSourceSettingsOptionsWireframe;
Divider: IVeltMediaSourceSettingsDividerWireframe;
}
declare const VeltMediaSourceSettingsVideoWireframe: IVeltMediaSourceSettingsVideoWireframe;
export default VeltMediaSourceSettingsVideoWireframe;