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
/
ToggleButtons
/
types.d.ts
11 lines
(10 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
declare
type
ToggleButtonsProps
= {
name
?:
string
;
/** id **/
id
?:
string
;
/** called when state change **/
onChange
?:
(
value
:
any
) =>
void
;
value
?:
any
;
size
?:
number
;
options
:
Array
<
string
>; };