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.

13 lines (12 loc) 846 B
import React from 'react'; import { IVeltTranscriptionCopyLinkButtonWireframe } from './VeltTranscriptionCopyLinkButtonWireframe/VeltTranscriptionCopyLinkButtonWireframe'; import { IVeltTranscriptionCopyLinkTooltipWireframe } from './VeltTranscriptionCopyLinkTooltipWireframe/VeltTranscriptionCopyLinkTooltipWireframe'; import { IVeltWireframeCommonProps } from '../../../constants'; export interface IVeltTranscriptionCopyLinkWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltTranscriptionCopyLinkWireframe extends React.FC<IVeltTranscriptionCopyLinkWireframeProps> { Button: IVeltTranscriptionCopyLinkButtonWireframe; Tooltip: IVeltTranscriptionCopyLinkTooltipWireframe; } declare const VeltTranscriptionCopyLinkWireframe: IVeltTranscriptionCopyLinkWireframe; export default VeltTranscriptionCopyLinkWireframe;