waffle/frontend/src/components/UserTopBar.svelte
hippoz 14a98d7eb1
switch to material design icons from feather icons
This should improve the visuals of the app. Additionally, it may improve the performance as well.
2022-09-18 01:41:59 +03:00

8 lines
255 B
Svelte

<script>
import { userInfoStore } from "../stores";
</script>
<div class="top-bar">
<span class="material-icons-outlined">alternate_email</span>
<span class="h5 top-bar-heading">{ $userInfoStore ? $userInfoStore.username : "" }</span>
</div>