mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-26 16:49:08 +02:00
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>
24 lines
597 B
Go
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
|