import { FC } from 'react'; import { ServiceType } from '../types'; export interface IconProps { direction?: 'up' | 'right' | 'down' | 'left'; color?: string; size?: number | string; opacity?: number; className?: string; testId?: string; } export type Icon = FC; export type MusicfetchService = { key: ServiceType; name: string; urlPattern: RegExp; color: string; colorInverted?: string; /** * SVG icon string */ icon: string; countries?: string[]; };