import type { Project } from "@paperclip/shared"; import { StatusBadge } from "./StatusBadge"; import { formatDate } from "../lib/utils"; import { Separator } from "@/components/ui/separator"; interface ProjectPropertiesProps { project: Project; } function PropertyRow({ label, children }: { label: string; children: React.ReactNode }) { return (