Sha256: 2220e88f40a606cc15337d3c27b5abcbc5c4458f318c4179e28772bdb980998f
Contents?: true
Size: 436 Bytes
Versions: 2
Compression:
Stored size: 436 Bytes
Contents
import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type HighlightProps = { className?: string; data?: { [key: string]: string; }; id?: string; children?: React.ReactChild[] | React.ReactChild | string; text?: string; highlightedText?: string[]; } & GlobalProps; declare const Highlight: (props: HighlightProps) => React.ReactElement; export default Highlight;
Version data entries
2 entries across 2 versions & 1 rubygems