feat: add new icons and modals, update DesktopCard and TableSelector components for improved UI and functionality

This commit is contained in:
2025-06-04 15:48:55 +05:00
parent fc84e48c4e
commit 411281c574
10 changed files with 170 additions and 65 deletions
+4 -1
View File
@@ -1,7 +1,10 @@
export interface IClient {
id: string;
fullname: string;
name: string;
email: string;
phone: string;
companyId: string;
createdAt: string;
ownerId: string;
updatedAt: string;
}
+2
View File
@@ -1,4 +1,5 @@
import { IApp } from "./IApp";
import { IClient } from "./IClient";
import { ISession } from "./ISession";
export interface IServer {
@@ -10,4 +11,5 @@ export interface IServer {
sessions?: ISession[];
apps?: IApp[];
status: "online" | "offline";
client?: IClient;
}