feat: add mac as platform

This commit is contained in:
DecDuck
2025-03-11 19:02:53 +11:00
parent ffc1537d7f
commit 789361ea73
9 changed files with 41 additions and 24 deletions

View File

@@ -1,6 +1,8 @@
import { IconsLinuxLogo, IconsWindowsLogo } from "#components";
import { IconsLinuxLogo, IconsWindowsLogo, IconsMacLogo } from "#components";
import { PlatformClient } from "./types";
export const PLATFORM_ICONS = {
[PlatformClient.Linux]: IconsLinuxLogo,
[PlatformClient.Windows]: IconsWindowsLogo,
[PlatformClient.macOS]: IconsMacLogo,
};

View File

@@ -15,4 +15,5 @@ export type QuickActionNav = {
export enum PlatformClient {
Windows = "Windows",
Linux = "Linux",
macOS = "macOS",
}