We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04e9408 commit 4e75894Copy full SHA for 4e75894
src/components/config-provider/config-provider.tsx
@@ -48,12 +48,6 @@ type Config = {
48
}
49
export const defaultPrefixCls = 'adm'
50
51
-const getPrefixCls = (suffixCls?: string, customizePrefixCls?: string) => {
52
- if (customizePrefixCls) {
53
- return customizePrefixCls
54
- }
55
- return suffixCls ? `${defaultPrefixCls}-${suffixCls}` : defaultPrefixCls
56
-}
57
export const defaultConfigRef: {
58
current: Config
59
} = {
0 commit comments