@open-tender/ui
Version:
A component library for use with the Open Tender web app
11 lines (10 loc) • 362 B
TypeScript
import React, { ReactNode } from 'react';
import { ScreenConfig, Styles } from '../types';
export interface SuccessMessageProps {
config: ScreenConfig;
children: string;
icon?: ReactNode;
style?: Styles;
}
declare const SuccessMessage: ({ config, children, icon, style }: SuccessMessageProps) => React.JSX.Element;
export default SuccessMessage;