-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(users): renaming the account now triggers a re-render in the si…
…debar (#7005)
- Loading branch information
1 parent
4371078
commit b4e1434
Showing
7 changed files
with
44 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
export * from "./sidebar"; | ||
export * from "./sidebar-items"; | ||
export * from "./sidebar-wrap"; | ||
export * from "./skeleton-profile"; | ||
export * from "./team-avatar"; | ||
export * from "./user-avatar"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Skeleton } from "@nextui-org/react"; | ||
|
||
export const SkeletonProfile = () => { | ||
return ( | ||
<div className="flex items-center space-x-2"> | ||
<Skeleton className="h-10 w-10 rounded-full"> | ||
<div className="h-10 w-10 rounded-full bg-default-200"></div> | ||
</Skeleton> | ||
<div className="flex flex-col space-y-1"> | ||
<Skeleton className="h-4 w-24 rounded-lg"> | ||
<div className="h-4 bg-default-200"></div> | ||
</Skeleton> | ||
<Skeleton className="h-3 w-24 rounded-lg"> | ||
<div className="h-3 bg-default-200"></div> | ||
</Skeleton> | ||
</div> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters