Add deprecation notice
This commit is contained in:
parent
09e89c5f41
commit
f800f05787
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue