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.
21 lines
615 B
21 lines
615 B
import * as React from 'react';
|
|
import { MarqueeProps } from './Marquee';
|
|
import { NoticeBarPropsType } from './PropsType';
|
|
export interface NoticeWebProps extends NoticeBarPropsType {
|
|
marqueeProps?: MarqueeProps;
|
|
className?: string;
|
|
prefixCls?: string;
|
|
style?: React.CSSProperties;
|
|
}
|
|
export default class NoticeBar extends React.Component<NoticeWebProps, any> {
|
|
static defaultProps: {
|
|
prefixCls: string;
|
|
mode: string;
|
|
icon: JSX.Element;
|
|
onClick(): void;
|
|
};
|
|
constructor(props: NoticeWebProps);
|
|
onClick: () => void;
|
|
render(): JSX.Element | null;
|
|
}
|