修改图标

This commit is contained in:
2025-11-29 09:34:29 +08:00
parent b55fc141fb
commit b76f2efe95
3 changed files with 20 additions and 20 deletions
+7 -7
View File
@@ -16,15 +16,15 @@ const emit = defineEmits<{
function getTypeIcon(type: PresetType) {
const icons: Record<string, string> = {
positive: '👍',
negative: '👎',
positive: '🪄',
negative: '',
setting: '⚙️',
style: '🎨',
character: '👤',
scene: '🌍',
custom: '📝'
style: '🖌️',
character: '🧙',
scene: '🏞️',
custom: '🧩'
};
return icons[type] || '📝';
return icons[type] || '🧩';
}
function getTypeLabel(type: PresetType) {