2026-01-09 16:17:09 +03:00
|
|
|
import { createTypographyControlManager } from '../../lib';
|
2026-02-07 18:06:13 +03:00
|
|
|
import { DEFAULT_TYPOGRAPHY_CONTROLS_DATA } from '../const/const';
|
2026-01-07 16:53:17 +03:00
|
|
|
|
2026-02-07 11:26:18 +03:00
|
|
|
export type ControlId = 'font_size' | 'font_weight' | 'line_height' | 'letter_spacing';
|
|
|
|
|
|
2026-02-07 18:06:13 +03:00
|
|
|
export const controlManager = createTypographyControlManager(DEFAULT_TYPOGRAPHY_CONTROLS_DATA);
|