Sha256: 1e6ac5fe1912432ed34c314c09513a798d2da0facb1190a296dbfc691713caf4
Contents?: true
Size: 900 Bytes
Versions: 7
Compression:
Stored size: 900 Bytes
Contents
/* @flow */ /* eslint-disable react/no-multi-comp, flowtype/space-before-type-colon */ import Highlighter from 'react-highlight-words' import React from 'react' import classnames from 'classnames' import { globalProps } from '../utilities/globalProps.js' type HighlightProps = { className?: String, data?: String, id?: String, children?: React.Node, text?: String, highlightedText?: Array<String>, } const Highlight = (props: HighlightProps) => { const { className = 'pb_highlight_kit', children, data, id, text, highlightedText = ['highlight'], } = props return ( <Highlighter autoEscape data={data} highlightClassName={classnames(className, globalProps(props))} highlightTag="span" id={id} searchWords={highlightedText} textToHighlight={text || children} /> ) } export default Highlight
Version data entries
7 entries across 7 versions & 1 rubygems