import { type ControlModel, createControlStore, } from '$shared/store/createControlStore'; import { DEFAULT_FONT_WEIGHT, FONT_WEIGHT_STEP, MAX_FONT_WEIGHT, MIN_FONT_WEIGHT, } from '../const/const'; const initialValue: ControlModel = { value: DEFAULT_FONT_WEIGHT, max: MAX_FONT_WEIGHT, min: MIN_FONT_WEIGHT, step: FONT_WEIGHT_STEP, }; export const fontWeightStore = createControlStore(initialValue);