choerodon-ui
Version:
An enterprise-class UI design language and React-based implementation
21 lines (20 loc) • 573 B
TypeScript
import React, { CSSProperties, Key, ReactNode } from 'react';
export interface NoticeProps {
key?: Key;
eventKey?: Key;
onClose?: (eventKey?: Key) => void;
duration?: number;
prefixCls?: string;
className?: string;
contentClassName?: string;
closable?: boolean;
style?: CSSProperties;
children?: ReactNode;
closeIcon?: ReactNode;
foldable?: Boolean;
offset?: number;
scrollHeight?: string | number;
totalHeight?: number;
}
declare const _default: React.NamedExoticComponent<NoticeProps>;
export default _default;