import { css, cx } from '@emotion/css' import Cover from './Cover' import Actions from './Actions' import Info from './Info' import React from 'react' interface Props { className?: string isLoading?: boolean title?: string creatorName?: string creatorLink?: string description?: string extraInfo?: string | React.ReactNode cover?: string videoCover?: string isLiked: boolean onPlay: () => void onLike?: () => void } const TrackListHeader = ({ className, isLoading, title, creatorName, creatorLink, description, extraInfo, cover, videoCover, isLiked, onPlay, onLike, }: Props) => { return (