can edit text + fix font weight - remove character space

This commit is contained in:
hamid zarghami
2025-11-26 15:45:00 +03:30
parent aacf209894
commit 735355822a
19 changed files with 342 additions and 160 deletions
+2 -3
View File
@@ -20,9 +20,9 @@ export const useTextDefaultsStore = create<TextDefaultsStoreType>((set) => ({
fontFamily: "1",
fontWeight: "bold",
fontSize: 16,
fill: "#A27BC1",
fill: "#000000",
opacity: 100,
letterSpacing: 10,
letterSpacing: 0,
wordSpacing: 10,
},
updateDefaults: (updates) =>
@@ -30,4 +30,3 @@ export const useTextDefaultsStore = create<TextDefaultsStoreType>((set) => ({
defaults: { ...state.defaults, ...updates },
})),
}));