Upload and test
This commit is contained in:
16
00-Lesson-Site/frontend/src/components/Navbar/UserIcon.astro
Normal file
16
00-Lesson-Site/frontend/src/components/Navbar/UserIcon.astro
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
// Path: src/components/Navbar/UserIcon.astro
|
||||
|
||||
import ProfileSpinner from "../SVGs/ProfileSpinner.astro";
|
||||
import UserSVG from "../SVGs/UserSVG.astro";
|
||||
import styles from "./UserIcon.module.scss";
|
||||
---
|
||||
|
||||
<a class={styles["user-icon"]}>
|
||||
<div class={styles["spin-container"]}>
|
||||
<div class={styles["spin-animation"]}>
|
||||
<ProfileSpinner />
|
||||
</div>
|
||||
</div>
|
||||
<UserSVG />
|
||||
</a>
|
||||
Reference in New Issue
Block a user