import type { MusicfetchServiceType } from 'musicfetch-lookup/types'; import { FC } from 'react'; 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: MusicfetchServiceType; name: string; urlPattern: RegExp; color: string; colorInverted?: string; /** * SVG icon string */ icon: string; countries?: string[]; };