UNPKG

@innovaccer/design-system

Version:

React components library project for Innovaccer Design System

16 lines (15 loc) 475 B
import * as React from 'react'; import { BaseProps } from "../../../utils/types"; export declare type StatusType = 'failed' | 'sending' | 'sent' | 'read' | 'urgent'; export interface StatusProps extends BaseProps { type: StatusType; time?: string | number; readText?: string; failedText?: string; sendingText?: string; } export declare const Status: { (props: StatusProps): React.JSX.Element | null; displayName: string; }; export default Status;