mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
91f9fc2ff9
* fix: token update * refactor: font map token * chore: code clean * chore: code clean * chore: code clean * chore: update snapshot * chore: menu style
20 lines
589 B
TypeScript
20 lines
589 B
TypeScript
import type { CommonMapToken, SeedToken } from '../../interface';
|
|
import genRadius from './genRadius';
|
|
|
|
export default function genCommonMapToken(token: SeedToken): CommonMapToken {
|
|
const { motionUnit, motionBase, borderRadius, lineWidth } = token;
|
|
|
|
return {
|
|
// motion
|
|
motionDurationFast: `${(motionBase + motionUnit).toFixed(1)}s`,
|
|
motionDurationMid: `${(motionBase + motionUnit * 2).toFixed(1)}s`,
|
|
motionDurationSlow: `${(motionBase + motionUnit * 3).toFixed(1)}s`,
|
|
|
|
// line
|
|
lineWidthBold: lineWidth + 1,
|
|
|
|
// radius
|
|
...genRadius(borderRadius),
|
|
};
|
|
}
|