import React from "react"; import { BigNumber } from "@ethersproject/bignumber"; import { useSelectionContext } from "../useSelection"; type ValueHighlighterProps = React.PropsWithChildren<{ value: BigNumber; }>; // TODO: replace all occurences with SelectionHighlighter and remove this component const ValueHighlighter: React.FC = ({ value, children, }) => { const [selection, setSelection] = useSelectionContext(); const select = () => { setSelection({ type: "value", content: value.toString() }); }; const deselect = () => { setSelection(null); }; return (
{children}
); }; export default React.memo(ValueHighlighter);