@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
12 lines (11 loc) • 397 B
TypeScript
import { ReactElement, ReactNode } from 'react';
export interface MessageProps {
title: string;
subtitle?: string | ReactElement;
link?: string;
linkText?: string;
children?: ReactNode;
className?: string;
otherSubtitle?: boolean;
}
export declare const Message: ({ title, subtitle, link, linkText, children, className, otherSubtitle, }: MessageProps) => ReactElement;