You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
521 B
20 lines
521 B
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;
|
|
showClear?: boolean;
|
|
}
|
|
|
|
export default class NoticeIconTab extends React.Component<INoticeIconTabProps, any> {}
|
|
|