UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

7 lines (6 loc) 288 B
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?: (prefixCls: string) => string): any;