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.

17 lines (16 loc) 1.12 kB
import React from 'react'; import { IVeltTranscriptionCloseButtonWireframe } from '../../VeltTranscriptionCloseButtonWireframe/VeltTranscriptionCloseButtonWireframe'; import { IVeltTranscriptionContentWireframe } from '../../VeltTranscriptionContentWireframe/VeltTranscriptionContentWireframe'; import { IVeltTranscriptionCopyLinkWireframe } from '../../VeltTranscriptionCopyLinkWireframe/VeltTranscriptionCopyLinkWireframe'; import { IVeltTranscriptionSummaryWireframe } from '../VeltTranscriptionSummaryWireframe'; import { IVeltWireframeCommonProps } from '../../../../constants'; export interface IVeltTranscriptionPanelWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltTranscriptionPanelWireframe extends React.FC<IVeltTranscriptionPanelWireframeProps> { CloseButton: IVeltTranscriptionCloseButtonWireframe; CopyLink: IVeltTranscriptionCopyLinkWireframe; Summary: IVeltTranscriptionSummaryWireframe; Content: IVeltTranscriptionContentWireframe; } declare const VeltTranscriptionPanelWireframe: IVeltTranscriptionPanelWireframe; export default VeltTranscriptionPanelWireframe;