Hygge-UI

Highlight

Used to highlight substrings of a text.

Source
With the Highlight component, you can spotlight words.
import { Highlight } from "@/components/highlight";

function Example() {
  return (
     <Highlight
        query="spotlight"
        text="With the Highlight component, you can spotlight words."
    />
  );
}