Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat: added initial LumexUser component
  • Loading branch information
Denny09310 committed Sep 15, 2025
commit 292a0cd710c40a654d7f6bdcb187026ff6e602dd
3 changes: 3 additions & 0 deletions src/LumexUI/Components/User/LumexUser.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@namespace LumexUI
@inherits LumexComponentBase

13 changes: 13 additions & 0 deletions src/LumexUI/Components/User/LumexUser.razor.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Copyright (c) LumexUI 2024
// LumexUI licenses this file to you under the MIT license
// See the license here https://github.com/LumexUI/lumexui/blob/main/LICENSE

namespace LumexUI;

/// <summary>
/// A component that represents user information, such as an avatar, name, and email.
/// </summary>
public partial class LumexUser : LumexComponentBase
{

}