A component that highlights search results in text.
'use client';
import { type PlateLeafProps, PlateLeaf } from 'platejs/react';
export function SearchHighlightLeaf(props: PlateLeafProps) {
return <PlateLeaf {...props} className="bg-yellow-100" />;
}
npx shadcn@latest add @plate/search-highlight-nodeimport { SearchHighlightNode } from "@/components/ui/search-highlight-node"<SearchHighlightNode />