import { Table, VTooltip } from "@vertesia/ui/core"; import { Info } from "lucide-react"; interface PropertiesViewProps { className?: string, properties: { name: string, value: React.ReactNode, description?: string }[] } export function PropertiesView({ className, properties }: PropertiesViewProps) { return ( { properties.map((property) => ( )) }
{property.name} {property.description && } {property.value ?? 'undefined'}
) }