mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2025-01-25 23:49:08 +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
|