feat(SetupFont): add multiplier constants

This commit is contained in:
Ilia Mashkov
2026-02-07 19:12:39 +03:00
parent 204aa75959
commit cb0e89b257
2 changed files with 10 additions and 0 deletions
@@ -79,3 +79,10 @@ export const DEFAULT_TYPOGRAPHY_CONTROLS_DATA: ControlModel<ControlId>[] = [
controlLabel: 'Letter Spacing',
},
];
/**
* Font size multipliers
*/
export const MULTIPLIER_S = 0.5;
export const MULTIPLIER_M = 0.75;
export const MULTIPLIER_L = 1;