tinacms
Version:
> The Fastest Way to Edit Next.js Content
10 lines (9 loc) • 337 B
TypeScript
import React from 'react';
export declare const Message: ({ children, type, size, className, link, linkLabel, }: {
children?: React.ReactNode | React.ReactNode[];
type?: 'success' | 'warning' | 'error' | 'info';
size?: 'small' | 'medium';
className?: string;
link?: string;
linkLabel?: string;
}) => JSX.Element;