import type { SVGProps } from "react"; export const supportedPlatforms = ["Android", "iOS", "macOS", "Windows", "Linux"] as const; export type PlatformName = (typeof supportedPlatforms)[number]; type PlatformIconProps = Omit, "children"> & { platform: PlatformName; }; function AndroidIcon() { return ( <> ); } function AppleIcon() { return ( ); } function MacIcon() { return ( <> ); } function WindowsIcon() { return ( ); } function LinuxIcon() { return ( <> ); } export function PlatformIcon({ platform, className, ...props }: PlatformIconProps) { return ( ); }