@kwiz/fluentui
Version:
KWIZ common controls for FluentUI
17 lines (16 loc) • 437 B
TypeScript
import * as React from 'react';
import '@mismerge/core/dark.css';
import '@mismerge/core/styles.css';
interface IProps {
title: string;
description?: string;
lhsTitle: string;
lhsValue: string;
rhsTitle: string;
rhsValue: string;
dark?: boolean;
save: (merged: string) => void;
cancel: () => void;
}
export declare const MergeText: React.FunctionComponent<React.PropsWithChildren<IProps>>;
export {};