import { Box, Button, Card, CardContent, Chip, Typography } from '@mui/material' import { useNavigate } from 'react-router' import type { StrongMatchItem } from '../../domain/dashboard' import { matchScoreHex } from '../../lib/utils' interface StrongMatchMiniCardProps { match: StrongMatchItem } export function StrongMatchMiniCard({ match }: StrongMatchMiniCardProps) { const navigate = useNavigate() return ( {match.propertyTitle} {match.propertyAddress} {match.topReason} {match.missingDataCount > 0 && ( )} ) }