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.

15 lines (14 loc) 1.35 kB
import React from 'react'; import { IVeltRecordingPreviewStepsDialogBottomPanelCloseWireframe } from './VeltRecordingPreviewStepsDialogBottomPanelCloseWireframe/VeltRecordingPreviewStepsDialogBottomPanelCloseWireframe'; import { IVeltRecordingPreviewStepsDialogBottomPanelCountdownWireframe } from './VeltRecordingPreviewStepsDialogBottomPanelCountdownWireframe/VeltRecordingPreviewStepsDialogBottomPanelCountdownWireframe'; import { IVeltRecordingPreviewStepsDialogBottomPanelIconWireframe } from './VeltRecordingPreviewStepsDialogBottomPanelIconWireframe/VeltRecordingPreviewStepsDialogBottomPanelIconWireframe'; import { IVeltWireframeCommonProps } from '../../../constants'; export interface IVeltRecordingPreviewStepsDialogBottomPanelWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltRecordingPreviewStepsDialogBottomPanelWireframe extends React.FC<IVeltRecordingPreviewStepsDialogBottomPanelWireframeProps> { Icon: IVeltRecordingPreviewStepsDialogBottomPanelIconWireframe; Close: IVeltRecordingPreviewStepsDialogBottomPanelCloseWireframe; Countdown: IVeltRecordingPreviewStepsDialogBottomPanelCountdownWireframe; } declare const VeltRecordingPreviewStepsDialogBottomPanelWireframe: IVeltRecordingPreviewStepsDialogBottomPanelWireframe; export default VeltRecordingPreviewStepsDialogBottomPanelWireframe;