diff --git a/packages/frontend/src/components/global/MkCustomEmoji.vue b/packages/frontend/src/components/global/MkCustomEmoji.vue index 1e17bab84..65d45f253 100644 --- a/packages/frontend/src/components/global/MkCustomEmoji.vue +++ b/packages/frontend/src/components/global/MkCustomEmoji.vue @@ -80,14 +80,14 @@ function onClick(ev: MouseEvent) { text: `:${props.name}:`, }, { text: i18n.ts.copy, - icon: 'ti ti-copy', + icon: 'ph-copy ph-bold ph-lg', action: () => { copyToClipboard(`:${props.name}:`); os.success(); }, }, ...(props.menuReaction && react ? [{ text: i18n.ts.doReaction, - icon: 'ti ti-plus', + icon: 'ph-plus ph-bold ph-lg', action: () => { react(`:${props.name}:`); },