minishouyin/node_modules/antd/es/theme/themes/shared/genControlHeight.js
2025-11-12 11:35:57 +08:00

11 lines
255 B
JavaScript

const genControlHeight = token => {
const {
controlHeight
} = token;
return {
controlHeightSM: controlHeight * 0.75,
controlHeightXS: controlHeight * 0.5,
controlHeightLG: controlHeight * 1.25
};
};
export default genControlHeight;