mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-21 20:03:43 +00:00
16 lines
403 B
Vue
16 lines
403 B
Vue
<script setup lang='ts'>
|
|
import { HoverButton, SvgIcon, UserAvatar } from '@/components/common'
|
|
</script>
|
|
|
|
<template>
|
|
<footer class="flex items-center justify-between p-4 overflow-hidden border-t">
|
|
<UserAvatar />
|
|
|
|
<HoverButton tooltip="Setting">
|
|
<span class="text-xl text-[#4f555e]">
|
|
<SvgIcon icon="ri:settings-4-line" />
|
|
</span>
|
|
</HoverButton>
|
|
</footer>
|
|
</template>
|