Use icons instead of Unicode characters #91

Merged
jakob.scheid merged 13 commits from feature/icons into main 2026-06-01 12:28:35 +02:00
Showing only changes of commit 20e350d88b - Show all commits
+10 -1
View File
@@ -40,5 +40,14 @@ const size = computed(() => ensureUnit(props.size))
</script> </script>
<template> <template>
<img :src="Icon" :style="{ height: `${size}`, width: `${size}` }" /> <div class="icon-container">
<img :src="Icon" :style="{ height: `${size}`, width: `${size}` }" />
</div>
</template> </template>
<style scoped>
.icon-container {
display: flex;
align-items: center;
}
</style>