import type { ReactElement } from 'react';
import React from 'react';
import { APPLE_MUSIC, SPOTIFY } from './social-platforms';
import { SpotifyIcon } from '../components/Icons/StoreIcon/SpotifyIcon';
import { AppleIcon } from '../components/Icons/StoreIcon/AppleIcon';

interface PlatformIcons {
    [key: string]: ReactElement;
}

export const platformIcons: PlatformIcons = {
    [SPOTIFY]: <SpotifyIcon width={16} />,
    [APPLE_MUSIC]: <AppleIcon width={16} />
};
