UNPKG

@flatbiz/antd

Version:
12 lines (9 loc) 303 B
import { AlertProps } from 'antd'; export type AlertWrapperProps = AlertProps & { size?: "small" | "default" | "large"; }; /** * antd Alert 无法控制内边距,此组件扩展size属性 */ export declare const AlertWrapper: (props: AlertWrapperProps) => import("react").JSX.Element; export {};