diff --git a/src/shared/components/Copy.vue b/src/shared/components/Copy.vue index a4657f7..81cf4ca 100644 --- a/src/shared/components/Copy.vue +++ b/src/shared/components/Copy.vue @@ -6,8 +6,8 @@ defineProps<{ value: string }>() const [copied, toggle] = useToggle() const { start } = useTimeoutFn(() => toggle(false), 1000, { immediate: false }) -const COPY = h(Icon, { icon: "emojione:clipboard" }) -const OK = h(Icon, { icon: "noto-v1:check-mark" }) +const COPY = h(Icon, { icon: "twemoji:clipboard" }) +const OK = h(Icon, { icon: "twemoji:check-mark-button" }) function handleClick(value: string) { copy(value)