import { Calendar, Eye, FileText, MessageSquare, } from "lucide-react" import type { FormSummary } from "@/lib/types" import { FormButton } from "@/components/shared/form-button" import { Link } from "react-router"; interface FormCardProps { form: FormSummary } export function FormCard({ form }: FormCardProps) { return (

{form.title}

{form.description}

{form.response_count} responses {new Date(form.updated_at).toLocaleDateString()}
Preview Form
) }