NoticeIconTab.d.ts 521 Bytes
Newer Older
jim's avatar
jim committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import * as React from 'react';
export interface INoticeIconData {
  avatar?: string;
  title?: React.ReactNode;
  description?: React.ReactNode;
  datetime?: React.ReactNode;
  extra?: React.ReactNode;
  style?: React.CSSProperties;
}

export interface INoticeIconTabProps {
  list?: INoticeIconData[];
  title?: string;
  emptyText?: React.ReactNode;
  emptyImage?: string;
  style?: React.CSSProperties;
jim's avatar
jim committed
17
  showClear?: boolean;
jim's avatar
jim committed
18 19
}

jim's avatar
jim committed
20
export default class NoticeIconTab extends React.Component<INoticeIconTabProps, any> {}