Files
netbird/client/ui/icons_menu_darwin.go
8b7ce337d8 [client] UI refactor (#6069)
Refactor UI

---------

Co-authored-by: Eduard Gert <kontakt@eduardgert.de>
Co-authored-by: braginini <bangvalo@gmail.com>
Co-authored-by: Pascal Fischer <32096965+pascal-fischer@users.noreply.github.com>
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: riccardom <riccardomanfrin@gmail.com>
2026-06-19 09:59:28 +02:00

24 lines
597 B
Go

//go:build darwin
package main
import _ "embed"
// 22px matches the NSMenuItem row text weight (HIG's 18-22 range);
// Windows uses 16px and Linux 24px — see the sibling icons_menu_*.go.
//go:embed assets/netbird-menu-dot-connected-22.png
var iconMenuDotConnected []byte
//go:embed assets/netbird-menu-dot-connecting-22.png
var iconMenuDotConnecting []byte
//go:embed assets/netbird-menu-dot-error-22.png
var iconMenuDotError []byte
//go:embed assets/netbird-menu-dot-idle-22.png
var iconMenuDotIdle []byte
//go:embed assets/netbird-menu-dot-offline-22.png
var iconMenuDotOffline []byte