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
@@ -16,7 +16,7 @@ limitations under the License.
<script setup>
import { useSettingsStore } from '../stores/settingsStore';
import Icon from '@/features/icons/components/Icon.vue';
import UIIcon from '@/features/icons/components/UIIcon.vue';
import { computed, ref, useId, watch } from 'vue';
import { useI18n } from 'vue-i18n';
@@ -93,7 +93,7 @@ const apply = function apply() {
:title="t('settings.input.done.title')"
:aria-label="t('settings.input.done.ariaLabel')"
>
<Icon name="check-mark" />
<UIIcon name="check-mark" />
</button>
</form>
</div>