import type { Widget } from "@/lib/config/schema"; type BookmarkWidget = Extract; export function BookmarkWidget({ widget }: { widget: BookmarkWidget }) { return ( {widget.name} {widget.description && ( {widget.description} )} ); }