mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
9 lines
284 B
TypeScript
9 lines
284 B
TypeScript
import { IconsLinuxLogo, IconsWindowsLogo, IconsMacLogo } from "#components";
|
|
import { PlatformClient } from "./types";
|
|
|
|
export const PLATFORM_ICONS = {
|
|
[PlatformClient.Linux]: IconsLinuxLogo,
|
|
[PlatformClient.Windows]: IconsWindowsLogo,
|
|
[PlatformClient.macOS]: IconsMacLogo,
|
|
};
|