UNPKG

@cbinsights/fds

Version:
10 lines (9 loc) 312 B
import React from 'react'; export interface HighlightTextProps { suggestion: string; query?: string; className?: string; children?: React.ReactNode; } declare const HighlightedText: ({ suggestion, query, className, children, }: HighlightTextProps) => JSX.Element; export default HighlightedText;