UNPKG
solive-core
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Solidity Monaco Editor Core Library
github.com/WTFAcademy/solive
WTFAcademy/solive
solive-core
/
dist
/
components
/
Button.d.ts
11 lines
•
307 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
"react"
;
type
TProps
= {
children
:
React
.
ReactNode
;
type
?:
"primary"
|
"default"
;
onClick
?:
() =>
void
;
className
?:
string
;
loading
?:
boolean
; };
declare
const
Button
:
(
props
:
TProps
) =>
JSX
.
Element
;
export
default
Button
;
//# sourceMappingURL=Button.d.ts.map