"use client" import Image from "next/image" import { dmSansClassName } from "@/lib/fonts" import { cn } from "@lib/utils" import type { ParsedPluginDocument } from "@/lib/plugin-document" export function PluginPreview({ parsed }: { parsed: ParsedPluginDocument }) { return (
{parsed.pluginIconSrc && ( )} {parsed.pluginLabel}

{parsed.formatLabel}

{parsed.identifierValue && (

{parsed.identifierValue}

)}

{parsed.title}

{parsed.preview || parsed.summary}

) }