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.21 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../constants'; import { IVeltConfirmDialogTitleWireframeProps } from './VeltConfirmDialogTitleWireframe/VeltConfirmDialogTitleWireframe'; import { IVeltConfirmDialogMessageWireframeProps } from './VeltConfirmDialogMessageWireframe/VeltConfirmDialogMessageWireframe'; import { IVeltConfirmDialogApproveButtonWireframeProps } from './VeltConfirmDialogApproveButtonWireframe/VeltConfirmDialogApproveButtonWireframe'; import { IVeltConfirmDialogRejectButtonWireframeProps } from './VeltConfirmDialogRejectButtonWireframe/VeltConfirmDialogRejectButtonWireframe'; export interface IVeltConfirmDialogWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltConfirmDialogWireframe extends React.FC<IVeltConfirmDialogWireframeProps> { Title: React.FC<IVeltConfirmDialogTitleWireframeProps>; Message: React.FC<IVeltConfirmDialogMessageWireframeProps>; ApproveButton: React.FC<IVeltConfirmDialogApproveButtonWireframeProps>; RejectButton: React.FC<IVeltConfirmDialogRejectButtonWireframeProps>; } declare const VeltConfirmDialogWireframe: IVeltConfirmDialogWireframe; export default VeltConfirmDialogWireframe;