feat: add printer and computer node types with icons

This commit is contained in:
Pouzor
2026-03-08 17:48:53 +01:00
parent c6fe984511
commit 3312742f4c
3 changed files with 12 additions and 4 deletions
+4
View File
@@ -10,6 +10,8 @@ export type NodeType =
| 'iot'
| 'ap'
| 'camera'
| 'printer'
| 'computer'
| 'generic'
export type EdgeType = 'ethernet' | 'wifi' | 'iot' | 'vlan' | 'virtual' | 'cluster'
@@ -69,6 +71,8 @@ export const NODE_TYPE_LABELS: Record<NodeType, string> = {
iot: 'IoT Device',
ap: 'Access Point',
camera: 'Camera',
printer: 'Printer',
computer: 'Computer',
generic: 'Generic Device',
}