UNPKG

react-smart-data-table

Version:

A smart data table component for React.js meant to be configuration free

8 lines (7 loc) 244 B
import type { FC, PropsWithChildren } from 'react'; interface HighlightValueProps { filterValue: string; 'data-testid'?: string; } declare const HighlightValue: FC<PropsWithChildren<HighlightValueProps>>; export default HighlightValue;