NoticeIconTab.d.ts 504 字节
Newer Older
J
jim 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
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;
}

export default class NoticeIconTab extends React.Component<
  INoticeIconTabProps,
  any
> {}