mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-21 08:29:18 +08:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
|
import { useToken } from '../../theme/internal';
|
||
|
|
||
|
const useCSSVarCls = (prefixCls: string) => {
|
||
|
const [, , , , cssVar] = useToken();
|
||
|
|
||
|
return cssVar ? `${prefixCls}-css-var` : '';
|
||
|
};
|
||
|
|
||
|
export default useCSSVarCls;
|