UNPKG

zent

Version:

一套前端设计语言和基于React的实现

18 lines (17 loc) 437 B
import { Component } from 'react'; export interface INotifyContentProps { text?: React.ReactNode; close(): void; selector: string | HTMLElement; status: string; isIn?: boolean; } export default class NotifyContent extends Component<INotifyContentProps> { static defaultProps: { text: string; status: string; className: string; }; onExited: () => void; render(): JSX.Element; }