@rc-component/notification
Version:
notification ui component for react
10 lines (9 loc) • 349 B
TypeScript
import * as React from 'react';
export interface ContentProps extends React.HTMLAttributes<HTMLDivElement> {
listPrefixCls: string;
height: number;
topNoticeHeight?: number;
topNoticeWidth?: number;
}
declare const Content: React.ForwardRefExoticComponent<ContentProps & React.RefAttributes<HTMLDivElement>>;
export default Content;