9 lines
No EOL
263 B
Svelte
9 lines
No EOL
263 B
Svelte
<script>
|
|
import { AtSignIcon } from "svelte-feather-icons";
|
|
import { userInfoStore } from "../stores";
|
|
</script>
|
|
|
|
<div class="top-bar">
|
|
<AtSignIcon />
|
|
<span class="h5 top-bar-heading">{ $userInfoStore ? $userInfoStore.username : "" }</span>
|
|
</div> |