9 lines
369 B
TypeScript
9 lines
369 B
TypeScript
|
|
import { createTypographySettingsManager } from '../../lib';
|
||
|
|
import { DEFAULT_TYPOGRAPHY_CONTROLS_DATA } from '../const/const';
|
||
|
|
|
||
|
|
export type ControlId = 'font_size' | 'font_weight' | 'line_height' | 'letter_spacing';
|
||
|
|
export const typographySettingsStore = createTypographySettingsManager(
|
||
|
|
DEFAULT_TYPOGRAPHY_CONTROLS_DATA,
|
||
|
|
'glyphdiff:comparison:typography',
|
||
|
|
);
|