This commit is contained in:
2024-07-05 17:00:05 +08:00
parent c761fe7993
commit 329489d83a

View File

@@ -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)