import React from "react" import { Tag } from "antd" import classnames from "classnames" import Marquee from "react-fast-marquee" import { Icons } from "@components/Icons" import Controls from "@components/Player/Controls" import { Context } from "@contexts/WithPlayerContext" function isOverflown(element) { if (!element) { return false } return element.scrollHeight > element.clientHeight || element.scrollWidth > element.clientWidth; } const RenderArtist = (props) => { const { artist } = props if (!artist) { return null } if (Array.isArray(artist)) { return