UNPKG

highlight-plus

Version:

A React component that extends react-highlight to highlight search terms within syntax-highlighted code.

8 lines (7 loc) 234 B
import React from "react"; export interface HighlightFrontProps { code_content?: string | undefined; language?: string | undefined; } declare const HighlightFront: React.FC<HighlightFrontProps>; export default HighlightFront;