You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
480 B
Vue
28 lines
480 B
Vue
<script setup lang="ts">
|
|
const userIcon = ref()
|
|
|
|
const toggleUserOptions = () => {
|
|
openSidebar()
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="flex h-14 w-screen items-center justify-between bg-primary px-4">
|
|
<div>
|
|
<Icon
|
|
name="user"
|
|
size="36"
|
|
ref="userIcon"
|
|
@click="toggleUserOptions()" />
|
|
</div>
|
|
<div class="flex gap-4">
|
|
<Icon
|
|
name="twitter"
|
|
size="28"
|
|
class="text-sky-500" />
|
|
</div>
|
|
<div class="invisible h-8 w-8"></div>
|
|
</div>
|
|
</template>
|