From 53868f0176c7ec2e46b4eabd1166bd5a7f5b9618 Mon Sep 17 00:00:00 2001 From: Mar0xy Date: Mon, 6 Nov 2023 00:28:29 +0100 Subject: chore: replace tabler icons with phosphor icons --- packages/frontend/src/components/MkNotification.vue | 4 ++-- packages/frontend/src/components/global/MkEmoji.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/frontend/src/components') diff --git a/packages/frontend/src/components/MkNotification.vue b/packages/frontend/src/components/MkNotification.vue index fd96aa4335..6b47f9c341 100644 --- a/packages/frontend/src/components/MkNotification.vue +++ b/packages/frontend/src/components/MkNotification.vue @@ -9,8 +9,8 @@ SPDX-License-Identifier: AGPL-3.0-only -
-
+
+
diff --git a/packages/frontend/src/components/global/MkEmoji.vue b/packages/frontend/src/components/global/MkEmoji.vue index 0855f20b8d..7fa3ce75a3 100644 --- a/packages/frontend/src/components/global/MkEmoji.vue +++ b/packages/frontend/src/components/global/MkEmoji.vue @@ -46,14 +46,14 @@ function onClick(ev: MouseEvent) { text: props.emoji, }, { text: i18n.ts.copy, - icon: 'ti ti-copy', + icon: 'ph-copy ph-bold ph-lg', action: () => { copyToClipboard(props.emoji); os.success(); }, }, ...(props.menuReaction && react ? [{ text: i18n.ts.doReaction, - icon: 'ti ti-plus', + icon: 'ph-plus ph-bold ph-lg', action: () => { react(props.emoji); }, -- cgit v1.2.3-freya