antd-hz
Version:
华卓科技基于 antd 5.0 定制的组件库
10 lines (9 loc) • 431 B
TypeScript
import * as React from 'react';
import type { PanelProps } from 'rc-dialog/lib/Dialog/Content/Panel';
import type { ModalFuncProps } from './interface';
export interface PurePanelProps extends Omit<PanelProps, 'prefixCls' | 'footer'>, Pick<ModalFuncProps, 'type' | 'footer'> {
prefixCls?: string;
style?: React.CSSProperties;
}
declare const _default: (props: PurePanelProps) => React.JSX.Element;
export default _default;