import { ArrowUpRight } from "@phosphor-icons/react/ssr"; import type { Widget } from "@/lib/config/schema"; import { PN_CARD_CLASS } from "@/components/widgets/WidgetCard"; type BookmarkWidget = Extract; export function BookmarkWidget({ widget }: { widget: BookmarkWidget }) { return (
{widget.name}
{widget.description && {widget.description}}
); }