mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 16:22:39 +10:00
9 lines
274 B
TypeScript
9 lines
274 B
TypeScript
import { IconsLinuxLogo, IconsWindowsLogo, IconsMacLogo } from "#components";
|
|
import { Platform } from "~/prisma/client/enums";
|
|
|
|
export const PLATFORM_ICONS = {
|
|
[Platform.Linux]: IconsLinuxLogo,
|
|
[Platform.Windows]: IconsWindowsLogo,
|
|
[Platform.macOS]: IconsMacLogo,
|
|
};
|