refactor(icons): rename Icon to UIIcon

Vue.js components should have multi-word names.
This commit is contained in:
2026-08-09 13:09:39 +02:00
committed by Gitea
parent 049857fe91
commit 034256e81b
8 changed files with 14 additions and 14 deletions
@@ -16,7 +16,7 @@ limitations under the License.
<script setup>
import { useSettingsPage } from '../composables/useSettingsPage';
import Icon from '@/features/icons/components/Icon.vue';
import UIIcon from '@/features/icons/components/UIIcon.vue';
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
@@ -46,7 +46,7 @@ const followLink = function followLink() {
@click="followLink"
>
{{ props.displayName }}
<Icon name="chevron-right" size="1em" />
<UIIcon name="chevron-right" size="1em" />
</button>
</template>