UNPKG
fai-webui
Version:
latest (0.0.2)
0.0.2
0.0.1
0.0.0
fai-webui
/
dist
/
Button
/
Button.d.ts
11 lines
(10 loc)
•
252 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
;
import
'./style.css'
;
type
ButtonProps
= {
label
:
string
;
onClick
?:
() =>
void
;
type
?:
'button'
|
'submit'
|
'reset'
;
disabled
?:
boolean
; };
declare
const
Button
:
React
.
FC
<
ButtonProps
>;
export
default
Button
;