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