fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
24 lines (23 loc) • 1.18 kB
TypeScript
import React from 'react';
import { MessageProps } from './type';
declare const Message: {
({ as, className, icon, header, content, closable, hidden, children, visible, compact, floating, textAligned, type, color, size, ...props }: MessageProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
displayName: string;
Header: {
({ as, className, children, ...props }: import("./type").MessageHeaderProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
displayName: string;
};
List: {
({ as, className, children, ...props }: import("./type").MessageListProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
displayName: string;
};
Item: {
({ as, className, children, ...props }: import("./type").MessageItemProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
displayName: string;
};
Content: {
({ as, className, children, ...props }: import("./type").MessageContentProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
displayName: string;
};
};
export default Message;