Files
terminal/web/node_modules/antd/es/theme/themes/shared/genControlHeight.js
T

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;