antd
Version:
An enterprise-class UI design language and React components implementation
7 lines (6 loc) • 352 B
TypeScript
import * as React from 'react';
export interface BaseProps {
prefixCls?: string;
style?: React.CSSProperties;
}
export default function genPurePanel<ComponentProps extends BaseProps>(Component: any, defaultPrefixCls?: string, getDropdownCls?: null | ((prefixCls: string) => string), postProps?: (props: ComponentProps) => ComponentProps): any;