searchable-react-json-viewThis is a fork of react-json-view with an extra search capability. Please go there for the full readme.Installyarn add searchable-react-json-viewNew PropsNameTypeDefaultDescriptionhighlightSearchstringNoneWhat term to highlight - applies to number, string, boolean and object keys.highlightSearchColorstringHighlight colorhighlightCurrentSearchColorstringCurrent highlight colorcustomCopiedIconJSX.ElementnullCustom icon that appears after copyingcustomCopyIconJSX.ElementnullCustom icon for copy to clipboardcustomActionsarray[]Custom actions that appear after copy, edit etc. each item should be: { icon: JSX.Element, onClick: clickedJsonValue => void }ExampleCustom actions & copy icon<JsonViewercustomCopiedIcon={<span>Copied</span>}customCopyIcon={<span>Copy</span>}customActions={[{icon: <span>A</span>,onClick: (value)=>alert(JSON.stringify(value))}]}/>