import type { MouseEvent } from 'react' import { Link } from 'react-router-dom' import type { Match } from 'features/Matches' import { OutsideClick } from 'features/OutsideClick' import { CardHoverInner, CardHoverTitle, CardHoverWrapper, MoreVideo, Row, Rows, } from '../styled' type CardFinishedHoverProps = { match: Match, onClose: () => void, } const stopProp = (e: MouseEvent) => { e.stopPropagation() } export const CardFinishedHover = ({ match: { hasVideo, id, sportName, }, onClose, }: CardFinishedHoverProps) => ( )