UNPKG

@kisstar/rc-ui

Version:

UI component library built with React Hooks.

7 lines (6 loc) 292 B
import React from 'react'; export interface ConfigConsumerProps { getPrefixCls: (suffixCls: string, customizePrefixCls?: string) => string; } export declare const ConfigContext: React.Context<ConfigConsumerProps>; export declare const ConfigConsumer: React.Consumer<ConfigConsumerProps>;