mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2024-11-13 02:59:14 +08:00
14 lines
343 B
TypeScript
14 lines
343 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
|