import { cn } from "@/lib/utils"; import type { LocalizedFeatureProperty } from "../utils/feature-properties"; type FeaturePropertyListProps = { entries: LocalizedFeatureProperty[]; variant?: "insight" | "popover"; }; export function FeaturePropertyList({ entries, variant = "insight" }: FeaturePropertyListProps) { if (entries.length === 0) { return

暂无可展示属性

; } return (
{entries.map((entry) => (
{entry.label}
{entry.value}
))}
); }