Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -67,9 +67,9 @@ with gr.Blocks(theme='John6666/Yntec_Theme') as demo:
|
|
| 67 |
label="Image",
|
| 68 |
)
|
| 69 |
with gr.Row():
|
| 70 |
-
go_btn = gr.Button("Go",
|
| 71 |
clear_btn = gr.Button(
|
| 72 |
-
"Clear",
|
| 73 |
)
|
| 74 |
|
| 75 |
def go(*args):
|
|
@@ -87,7 +87,7 @@ with gr.Blocks(theme='John6666/Yntec_Theme') as demo:
|
|
| 87 |
with gr.Row():
|
| 88 |
btn1 = gr.Button("Button 1")
|
| 89 |
btn2 = gr.UploadButton()
|
| 90 |
-
stop_btn = gr.Button("Stop",
|
| 91 |
|
| 92 |
with gr.Row():
|
| 93 |
gr.Dataframe(value=[[1, 2, 3], [4, 5, 6], [7, 8, 9]], label="Dataframe")
|
|
|
|
| 67 |
label="Image",
|
| 68 |
)
|
| 69 |
with gr.Row():
|
| 70 |
+
go_btn = gr.Button("Go", variant="primary")
|
| 71 |
clear_btn = gr.Button(
|
| 72 |
+
"Clear", variant="secondary"
|
| 73 |
)
|
| 74 |
|
| 75 |
def go(*args):
|
|
|
|
| 87 |
with gr.Row():
|
| 88 |
btn1 = gr.Button("Button 1")
|
| 89 |
btn2 = gr.UploadButton()
|
| 90 |
+
stop_btn = gr.Button("Stop", variant="stop")
|
| 91 |
|
| 92 |
with gr.Row():
|
| 93 |
gr.Dataframe(value=[[1, 2, 3], [4, 5, 6], [7, 8, 9]], label="Dataframe")
|