mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
9f88c1238a
* feat: token update * chore: update test * chore: lint * chore: code clean * test: update test case * feat: radius token update * fix: form size * chore: fix steps style * chore: code clean * chore: update test case
14 lines
349 B
TypeScript
14 lines
349 B
TypeScript
import type { HeightMapToken, SeedToken } from '../../interface';
|
|
|
|
const genControlHeight = (token: SeedToken): HeightMapToken => {
|
|
const { controlHeight } = token;
|
|
|
|
return {
|
|
controlHeightSM: controlHeight * 0.75,
|
|
controlHeightXS: controlHeight * 0.5,
|
|
controlHeightLG: controlHeight * 1.25,
|
|
};
|
|
};
|
|
|
|
export default genControlHeight;
|