diff --git a/common/components/AddressField.tsx b/common/components/AddressField.tsx index 62af5f4d..af22b0ed 100644 --- a/common/components/AddressField.tsx +++ b/common/components/AddressField.tsx @@ -13,6 +13,12 @@ interface OwnProps { isSelfAddress?: boolean; isCheckSummed?: boolean; showLabelMatch?: boolean; + showIdenticon?: boolean; + showInputLabel?: boolean; + placeholder?: string; + value?: string; + dropdownThreshold?: number; + onChangeOverride?(ev: React.FormEvent): void; } interface StateProps { @@ -26,26 +32,42 @@ const AddressField: React.SFC = ({ isSelfAddress, isCheckSummed, showLabelMatch, - toChecksumAddress + toChecksumAddress, + showIdenticon, + placeholder = donationAddressMap.ETH, + showInputLabel = true, + onChangeOverride, + value, + dropdownThreshold }) => ( (