import { ChatBubbleBottomCenterTextIcon, ChevronDownIcon, ChevronUpIcon, EyeIcon, } from '@heroicons/react/24/outline'; import { Badge, Button } from '@tih/ui'; export type QuestionOverviewCardProps = { answerCount: number; content: string; location: string; role: string; similarCount: number; timestamp: string; upvoteCount: number; }; export default function QuestionOverviewCard({ answerCount, content, similarCount, upvoteCount, timestamp, role, location, }: QuestionOverviewCardProps) { return (

{timestamp} · {location} · {role}

{content}

); }