mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
2e0942ab26
* refactor: cssVarCls * refactor: update * chore: update * fix: cascader & tree-select * fix: ribbon
15 lines
389 B
TypeScript
15 lines
389 B
TypeScript
import { useToken } from '../../theme/internal';
|
|
|
|
/**
|
|
* This hook is only for cssVar to add root className for components.
|
|
* If root ClassName is needed, this hook could be refactored with `-root`
|
|
* @param prefixCls
|
|
*/
|
|
const useCSSVarCls = (prefixCls: string) => {
|
|
const [, , , , cssVar] = useToken();
|
|
|
|
return cssVar ? `${prefixCls}-css-var` : '';
|
|
};
|
|
|
|
export default useCSSVarCls;
|