refactor(icons): rename Icon to UIIcon

Vue.js components should have multi-word names.
This commit is contained in:
2026-08-08 16:12:53 +02:00
parent 7bc661ef5a
commit 4809ab4330
8 changed files with 14 additions and 14 deletions
@@ -15,7 +15,7 @@ limitations under the License.
-->
<script setup>
import Icon from '@/features/icons/components/Icon.vue';
import UIIcon from '@/features/icons/components/UIIcon.vue';
const emit = defineEmits(['click']);
@@ -26,7 +26,7 @@ const click = function click(event) {
<template>
<button class="button sidebar-expand-button">
<Icon name="sidebar-expand" @click="click" />
<UIIcon name="sidebar-expand" @click="click" />
</button>
</template>