Add deprecation notice

This commit is contained in:
Willian Mitsuda 2021-10-28 02:56:17 -03:00
parent 09e89c5f41
commit f800f05787
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ type AddressHighlighterProps = React.PropsWithChildren<{
address: string; address: string;
}>; }>;
// TODO: replace all occurences with SelectionHighlighter and remove this component
const AddressHighlighter: React.FC<AddressHighlighterProps> = ({ const AddressHighlighter: React.FC<AddressHighlighterProps> = ({
address, address,
children, children,

View File

@ -6,6 +6,7 @@ type ValueHighlighterProps = React.PropsWithChildren<{
value: BigNumber; value: BigNumber;
}>; }>;
// TODO: replace all occurences with SelectionHighlighter and remove this component
const ValueHighlighter: React.FC<ValueHighlighterProps> = ({ const ValueHighlighter: React.FC<ValueHighlighterProps> = ({
value, value,
children, children,