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;
}>;
// TODO: replace all occurences with SelectionHighlighter and remove this component
const AddressHighlighter: React.FC<AddressHighlighterProps> = ({
address,
children,

View File

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