UNPKG

@innovaccer/design-system

Version:

React components library project for Innovaccer Design System

20 lines (19 loc) 590 B
import * as React from 'react'; import { BaseProps } from "../../../utils/types"; import { MessageAppearance } from "../../../common.type"; export declare type MessageSize = 'regular' | 'small'; export interface InlineMessageProps extends BaseProps { appearance: MessageAppearance; description: string; size: MessageSize; } export declare const InlineMessage: { (props: InlineMessageProps): React.JSX.Element; displayName: string; defaultProps: { appearance: string; description: string; size: string; }; }; export default InlineMessage;