mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-07 20:08:21 +08:00
7 lines
310 B
TypeScript
7 lines
310 B
TypeScript
|
import { prepareColComponentToken, prepareRowComponentToken } from '.';
|
||
|
import { genCSSVarRegister } from '../../theme/internal';
|
||
|
|
||
|
export const useColCssVar = genCSSVarRegister<'Grid'>('Grid', prepareColComponentToken);
|
||
|
|
||
|
export const useRowCssVar = genCSSVarRegister<'Grid'>('Grid', prepareRowComponentToken);
|