UNPKG

@innovaccer/design-system

Version:

React components library project for Innovaccer Design System

20 lines (19 loc) 549 B
import * as React from 'react'; import { BaseProps } from "../../../utils/types"; import { MessageAppearance } from "../../../common.type"; export interface MessageProps extends BaseProps { appearance: MessageAppearance; title?: string; children?: React.ReactNode; description: string; actions?: React.ReactNode; } export declare const Message: { (props: MessageProps): React.JSX.Element; displayName: string; defaultProps: { appearance: string; description: string; }; }; export default Message;