UNPKG

zent

Version:

一套前端设计语言和基于React的实现

9 lines (8 loc) 297 B
import { FC } from 'react'; import { IAlertProps } from '../alert'; export declare type BannerCloseIconColor = 'grey' | 'white'; export declare type IBannerProps = Omit<IAlertProps, 'title'> & { backgroundImage: string; }; export declare const Banner: FC<IBannerProps>; export default Banner;