import createReactContext from '@ant-design/create-react-context'; export interface ConfigConsumerProps { getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement; rootPrefixCls?: string; getPrefixCls: (suffixCls: string, customizePrefixCls?: string) => string; autoInsertSpaceInButton?: boolean; } const ConfigContext = createReactContext({ // We provide a default function for Context without provider getPrefixCls: (suffixCls: string, customizePrefixCls?: string) => { if (customizePrefixCls) return customizePrefixCls; return `ant-${suffixCls}`; }, }); export const ConfigConsumer = ConfigContext.Consumer;