17 lines
375 B
Plaintext
17 lines
375 B
Plaintext
---
|
|
// 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>
|