react-tiny-highlighted-text
v1.0.2
Published
"Tiny text highlighter for create-react-app"
Downloads
8
Maintainers
Readme
react-highlighted-text
Tiny text highlighter for create-react-app
Description
Highlights searchString prop matches in text prop
Installation
npm i react-highlighted-text --save
Usage:
Without css-modules
<HighlightedText
text={'any text'}
searchString={'te'}
className={'textClass'}
highlightedClass={'findedTextClass'}
/>
With css-modules
import styles from './styles.css'
<HighlightedText
text={'any text'}
searchString={'te'}
className={styles.textClass}
highlightedClass={style.findedTextClass}
/>