UNPKG
@pollum-io/pegasys-components
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Components for Pegays Protocol, the leading AMM on Syscoin NEVM.
@pollum-io/pegasys-components
/
lib
/
components
/
CurrencyInput
/
types.d.ts
8 lines
(7 loc)
•
267 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Currency
,
Pair
}
from
'@pollum-io/pegasys-sdk'
;
import
{
TextInputProps
}
from
'../TextInput/types'
;
export
declare
type
CurrencyInputProps
=
TextInputProps
& {
currency
?:
Currency
|
null
;
pair
?:
Pair
|
null
;
onTokenClick
?:
() =>
void
; };