export function KvList({ values, variant = "cards" }) { return (
{values.map(([key, value]) => (
{key}
{value}
))}
); }